pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / xsnow / default.nix
blobba9791cc6f1a3ef567b17b61291fbce033d361de
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 = "X-windows application that will let it snow on the root, in between and on windows";
21     mainProgram = "xsnow";
22     homepage = "https://ratrabbit.nl/ratrabbit/xsnow/";
23     license = licenses.gpl3Plus;
24     maintainers = with maintainers; [ robberer ];
25     platforms = platforms.unix;
26   };