summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_stretch
diff options
context:
space:
mode:
authorEduard Bachmakov <e.bachmakov@gmail.com>2015-01-14 19:28:41 -0500
committerEduard Bachmakov <e.bachmakov@gmail.com>2015-01-18 22:22:17 -0500
commit825f976b272d833275a04236247e8fe8345616fd (patch)
tree50a9d5d8c563d68224f51dfded8bf4e73cae76b0 /pkgs/development/libraries/SDL_stretch
parentcbe467ef9986289710ca49ab728d3bae22ba7ac4 (diff)
downloadnixpkgs-825f976b272d833275a04236247e8fe8345616fd.tar
nixpkgs-825f976b272d833275a04236247e8fe8345616fd.tar.gz
nixpkgs-825f976b272d833275a04236247e8fe8345616fd.tar.bz2
nixpkgs-825f976b272d833275a04236247e8fe8345616fd.tar.lz
nixpkgs-825f976b272d833275a04236247e8fe8345616fd.tar.xz
nixpkgs-825f976b272d833275a04236247e8fe8345616fd.tar.zst
nixpkgs-825f976b272d833275a04236247e8fe8345616fd.zip
Add package: SDL_stretch-0.3.1
Added in preparation for 3dfsb.
Diffstat (limited to 'pkgs/development/libraries/SDL_stretch')
-rw-r--r--pkgs/development/libraries/SDL_stretch/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/SDL_stretch/default.nix b/pkgs/development/libraries/SDL_stretch/default.nix
new file mode 100644
index 00000000000..52c43da9d16
--- /dev/null
+++ b/pkgs/development/libraries/SDL_stretch/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, SDL }:
+
+stdenv.mkDerivation {
+  name = "SDL_stretch-0.3.1";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/sdl-stretch/0.3.1/SDL_stretch-0.3.1.tar.bz2";
+    sha256 = "1mzw68sn4yxbp8429jg2h23h8xw2qjid51z1f5pdsghcn3x0pgvw";
+  };
+
+  buildInputs = [ SDL ];
+
+  meta = {
+     description = "Stretch Functions For SDL";
+     homepage = "http://sdl-stretch.sourceforge.net/";
+     license = stdenv.lib.licenses.lgpl2;
+     platforms = stdenv.lib.platforms.linux;
+  };
+}