zipline: refactor environment variables (#377101)
[NixPkgs.git] / pkgs / by-name / li / linux_logo / package.nix
blob07d3bfe9e5df36cb1dead228670242a4ed9811af
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   gettext,
6   which,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "linux_logo";
11   version = "6.01";
13   src = fetchFromGitHub {
14     owner = "deater";
15     repo = pname;
16     rev = "v${version}";
17     hash = "sha256-yBAxPwgKyFFIX0wuG7oG+FbEDpA5cPwyyJgWrFErJ7I=";
18   };
20   nativeBuildInputs = [
21     gettext
22     which
23   ];
25   meta = with lib; {
26     description = "Prints an ASCII logo and some system info";
27     mainProgram = "linux_logo";
28     homepage = "http://www.deater.net/weave/vmwprod/linux_logo";
29     changelog = "https://github.com/deater/linux_logo/blob/${src.rev}/CHANGES";
30     license = licenses.gpl2Plus;
31     maintainers = with maintainers; [ azahi ];
32     platforms = platforms.linux;
33   };