blob: bddb05b73a522fd810a1b3ef47d8cd85080391b4 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{
lib,
stdenv,
fetchurl,
pkg-config,
libxml2,
wrapGAppsHook3,
gtk3-x11,
xorg,
libxkbcommon,
gsl,
}:
stdenv.mkDerivation rec {
pname = "xsnow";
version = "3.8.4";
src = fetchurl {
url = "https://ratrabbit.nl/downloads/xsnow/xsnow-${version}.tar.gz";
sha256 = "sha256-ixfX/EGdwMOYu6nzcRUp7gjii0+T14CcqHCHIWmR2f8=";
};
nativeBuildInputs = [
pkg-config
wrapGAppsHook3
];
buildInputs =
[
gtk3-x11
libxkbcommon
libxml2
gsl
]
++ (with xorg; [
libX11
libXpm
libXt
libXtst
]);
makeFlags = [ "gamesdir=$(out)/bin" ];
enableParallelBuilding = true;
meta = with lib; {
description = "X-windows application that will let it snow on the root, in between and on windows";
mainProgram = "xsnow";
homepage = "https://ratrabbit.nl/ratrabbit/xsnow/";
changelog = "https://ratrabbit.nl/ratrabbit/xsnow/changelog/index.html";
downloadPage = "https://ratrabbit.nl/ratrabbit/xsnow/downloads/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
robberer
griffi-gh
];
platforms = platforms.unix;
};
}
|