57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
35 lines
795 B
Nix
35 lines
795 B
Nix
{ stdenv, fetchurl, libXt, libXpm, libXext, imake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.42";
|
|
name = "xsnow-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://janswaal.home.xs4all.nl/Xsnow/${name}.tar.gz";
|
|
sha256 = "06jnbp88wc9i9dbmy7kggplw4hzlx2bhghxijmlhkjlizgqwimyh";
|
|
};
|
|
|
|
buildInputs = [
|
|
libXt libXpm libXext imake
|
|
];
|
|
|
|
buildPhase = ''
|
|
xmkmf
|
|
make
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share/man/man1
|
|
cp xsnow $out/bin/
|
|
cp xsnow.1 $out/share/man/man1/
|
|
'';
|
|
|
|
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/;
|
|
license = stdenv.lib.licenses.unfree;
|
|
maintainers = [ stdenv.lib.maintainers.robberer ];
|
|
};
|
|
}
|