summaryrefslogtreecommitdiffstats
path: root/pkgs/games/amoeba/data.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-01-10 16:45:25 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-02-14 15:45:09 +0200
commitc86798125b85a6c4fc49520e79b59ed2299f2885 (patch)
treec4941b2be2e751744360cbd35fcd2cf5b3de5f9f /pkgs/games/amoeba/data.nix
parentcc442cbdba0d7f4139c3e31b10d407a38bf71c7b (diff)
amoeba: init at 1.1
This uses all the patches from Debian since otherwise it would work on i686 among other things.
Diffstat (limited to 'pkgs/games/amoeba/data.nix')
-rw-r--r--pkgs/games/amoeba/data.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/games/amoeba/data.nix b/pkgs/games/amoeba/data.nix
new file mode 100644
index 000000000000..b5c7f4b730b8
--- /dev/null
+++ b/pkgs/games/amoeba/data.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "amoeba-data-${version}";
+ version = "1.1";
+
+ src = fetchurl {
+ url = "http://http.debian.net/debian/pool/non-free/a/amoeba-data/amoeba-data_${version}.orig.tar.gz";
+ sha256 = "1bgclr1v63n14bj9nwzm5zxg48nm0cla9bq1rbd5ylxra18k0jbg";
+ };
+
+ installPhase = ''
+ mkdir -p $out/share/amoeba
+ cp demo.dat $out/share/amoeba/
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Fast-paced, polished OpenGL demonstration by Excess (data files)";
+ homepage = https://packages.qa.debian.org/a/amoeba-data.html;
+ license = licenses.unfree;
+ maintainers = [ maintainers.dezgeg ];
+ platforms = platforms.all;
+ };
+}