python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / linux-logo / default.nix
bloba37f25c17d0a126de2639d0f205872d9955df01d
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , gettext
5 , which
6 , nix-update-script
7 }:
9 stdenv.mkDerivation rec {
10   pname = "linux_logo";
11   version = "6.0";
13   src = fetchFromGitHub {
14     owner = "deater";
15     repo = pname;
16     rev = version;
17     sha256 = "sha256-q8QznEgnALJS//l7XXHZlq07pI2jCCm2USEU96rO8N0=";
18   };
20   nativeBuildInputs = [ gettext which ];
22   passthru.updateScript = nix-update-script {
23     attrPath = pname;
24   };
26   meta = with lib; {
27     description = "Prints an ASCII logo and some system info";
28     homepage = "http://www.deater.net/weave/vmwprod/linux_logo";
29     changelog = "https://github.com/deater/linux_logo/blob/${version}/CHANGES_IN_${version}";
30     license = licenses.gpl2Plus;
31     maintainers = with maintainers; [ azahi ];
32     platforms = platforms.linux;
33   };