nixpkgs/pkgs/games/xsnow/default.nix

27 lines
734 B
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, fetchurl, libXt, libXpm, libXext, imake, gccmakedep }:
2014-11-12 16:52:21 +00:00
stdenv.mkDerivation rec {
version = "1.42";
pname = "xsnow";
2014-11-12 16:52:21 +00:00
src = fetchurl {
url = "https://janswaal.home.xs4all.nl/Xsnow/${pname}-${version}.tar.gz";
2014-11-12 16:52:21 +00:00
sha256 = "06jnbp88wc9i9dbmy7kggplw4hzlx2bhghxijmlhkjlizgqwimyh";
};
2018-11-28 02:15:45 +00:00
nativeBuildInputs = [ imake gccmakedep ];
2014-11-12 16:52:21 +00:00
buildInputs = [
2018-11-28 02:15:45 +00:00
libXt libXpm libXext
2014-11-12 16:52:21 +00:00
];
2018-11-28 02:15:45 +00:00
makeFlags = [ "BINDIR=$(out)/bin" "MANPATH=$(out)/share/man" ];
2014-11-12 16:52:21 +00:00
meta = {
description = "An X-windows application that will let it snow on the root, in between and on windows";
homepage = "http://janswaal.home.xs4all.nl/Xsnow/";
2021-01-15 04:31:39 +00:00
license = lib.licenses.unfree;
maintainers = [ lib.maintainers.robberer ];
2018-11-28 02:15:45 +00:00
};
2014-11-12 16:52:21 +00:00
}