biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / linux-logo / default.nix
blob5b12f75b729736af5b782709cd7e69090bc52903
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , gettext
5 , which
6 }:
8 stdenv.mkDerivation rec {
9   pname = "linux_logo";
10   version = "6.01";
12   src = fetchFromGitHub {
13     owner = "deater";
14     repo = pname;
15     rev = "v${version}";
16     hash = "sha256-yBAxPwgKyFFIX0wuG7oG+FbEDpA5cPwyyJgWrFErJ7I=";
17   };
19   nativeBuildInputs = [ gettext which ];
21   meta = with lib; {
22     description = "Prints an ASCII logo and some system info";
23     mainProgram = "linux_logo";
24     homepage = "http://www.deater.net/weave/vmwprod/linux_logo";
25     changelog = "https://github.com/deater/linux_logo/blob/${src.rev}/CHANGES";
26     license = licenses.gpl2Plus;
27     maintainers = with maintainers; [ azahi ];
28     platforms = platforms.linux;
29   };