about summary refs log tree commit diff
path: root/pkgs/data/misc/miscfiles
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-10-26 23:03:36 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-10-26 23:03:36 +0000
commit0c4c01f6c990d18136d12b742220b92342f2c565 (patch)
treea86acee7913492c0d9fb8538fe0b8e8b0cd3642e /pkgs/data/misc/miscfiles
parent26d2ee22e2458910160aaa43bf7042c66a0e66cb (diff)
downloadnixlib-0c4c01f6c990d18136d12b742220b92342f2c565.tar
nixlib-0c4c01f6c990d18136d12b742220b92342f2c565.tar.gz
nixlib-0c4c01f6c990d18136d12b742220b92342f2c565.tar.bz2
nixlib-0c4c01f6c990d18136d12b742220b92342f2c565.tar.lz
nixlib-0c4c01f6c990d18136d12b742220b92342f2c565.tar.xz
nixlib-0c4c01f6c990d18136d12b742220b92342f2c565.tar.zst
nixlib-0c4c01f6c990d18136d12b742220b92342f2c565.zip
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
Diffstat (limited to 'pkgs/data/misc/miscfiles')
-rw-r--r--pkgs/data/misc/miscfiles/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/data/misc/miscfiles/default.nix b/pkgs/data/misc/miscfiles/default.nix
new file mode 100644
index 000000000000..e216f4b0278d
--- /dev/null
+++ b/pkgs/data/misc/miscfiles/default.nix
@@ -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";
+  };
+}