Adding bsdgames and miscfiles (this later, for 'words')

I could not easily make some bsdgames build or install. Too much patching
against the installer trying to write beyond the nix store.

svn path=/nixpkgs/trunk/; revision=17971
This commit is contained in:
Lluís Batlle i Rossell
2009-10-26 23:03:36 +00:00
parent 26d2ee22e2
commit 0c4c01f6c9
3 changed files with 71 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "miscfiles-1.4.2";
src = fetchurl {
url = "mirror://gnu/miscfiles/${name}.tar.gz";
sha256 = "1rh10y63asyrqyp5mlmxy7y4kdp6svk2inws3y7mfx8lsrhcm6dn";
};
meta = {
homepage = http://www.gnu.org/software/miscfiles/;
license = "GPLv2+";
description = "Collection of files not of crucial importance for sysadmins";
};
}