python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / xsnow / default.nix
blobff34bfe729bab06ebe7087c860034b8632f2a959
1 { lib, stdenv, fetchurl, pkg-config, libxml2, gtk3-x11, libXt, libXpm }:
3 stdenv.mkDerivation rec {
4   pname = "xsnow";
5   version = "3.4.4";
7   src = fetchurl {
8     url = "https://ratrabbit.nl/downloads/xsnow/xsnow-${version}.tar.gz";
9     sha256 = "sha256-fPMy5AxKspFkcWphf/IjMc/ZQtayljThKxbcMtvOjRc=";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ gtk3-x11 libxml2 libXt libXpm ];
15   makeFlags = [ "gamesdir=$(out)/bin" ];
17   enableParallelBuilding = true;
19   meta = with lib; {
20     description = "An X-windows application that will let it snow on the root, in between and on windows";
21     homepage = "https://ratrabbit.nl/ratrabbit/xsnow/";
22     license = licenses.gpl3Plus;
23     maintainers = with maintainers; [ robberer ];
24     platforms = platforms.unix;
25   };