summary refs log tree commit diff
path: root/pkgs/games/hexen
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-14 22:25:14 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-14 22:25:14 +0000
commit9471c2f7db86f517b495c2d07682b9d98c63d065 (patch)
tree9b1ed45125d227a56683c977fdc0e1c226701b28 /pkgs/games/hexen
parent035b95a4dee8ae00ba897fc6b8e87fdcdccc300b (diff)
downloadnixpkgs-9471c2f7db86f517b495c2d07682b9d98c63d065.tar
nixpkgs-9471c2f7db86f517b495c2d07682b9d98c63d065.tar.gz
nixpkgs-9471c2f7db86f517b495c2d07682b9d98c63d065.tar.bz2
nixpkgs-9471c2f7db86f517b495c2d07682b9d98c63d065.tar.lz
nixpkgs-9471c2f7db86f517b495c2d07682b9d98c63d065.tar.xz
nixpkgs-9471c2f7db86f517b495c2d07682b9d98c63d065.tar.zst
nixpkgs-9471c2f7db86f517b495c2d07682b9d98c63d065.zip
Adding the simple port of hexen.
svn path=/nixpkgs/trunk/; revision=15046
Diffstat (limited to 'pkgs/games/hexen')
-rw-r--r--pkgs/games/hexen/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/games/hexen/default.nix b/pkgs/games/hexen/default.nix
new file mode 100644
index 00000000000..c97ba4d5bf4
--- /dev/null
+++ b/pkgs/games/hexen/default.nix
@@ -0,0 +1,17 @@
+{stdenv, fetchurl, SDL} :
+
+stdenv.mkDerivation {
+  name = "hexen-0.2.3";
+  src = fetchurl {
+    url = http://www.libsdl.org/projects/hexen/src/hexen-0.2.3.tar.gz;
+    sha256 = "c1433e930f2003c5f817f935406bb28ba15298a15b1c11f83f42df3e9f1f3bc4";
+  };
+
+  buildInputs = [ SDL ];
+
+  meta = {
+    homepage = http://www.libsdl.org/projects/hexen/;
+    description = "Port of Raven Software's popular Hexen 3-D shooter game";
+    license = "free";
+  };
+}