1 { lib, stdenv, fetchurl, pkg-config, libxml2, gtk3-x11, libXt, libXpm }:
3 stdenv.mkDerivation rec {
8 url = "https://ratrabbit.nl/downloads/xsnow/xsnow-${version}.tar.gz";
9 sha256 = "sha256-fPMy5AxKspFkcWphf/IjMc/ZQtayljThKxbcMtvOjRc=";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ gtk3-x11 libxml2 libXt libXpm ];
15 makeFlags = [ "gamesdir=$(out)/bin" ];
17 enableParallelBuilding = true;
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;