about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/SDL_stretch
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/SDL_stretch')
-rw-r--r--nixpkgs/pkgs/development/libraries/SDL_stretch/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/SDL_stretch/default.nix b/nixpkgs/pkgs/development/libraries/SDL_stretch/default.nix
new file mode 100644
index 000000000000..e6318b84859e
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/SDL_stretch/default.nix
@@ -0,0 +1,20 @@
+{ lib, stdenv, fetchurl, SDL }:
+
+stdenv.mkDerivation rec {
+  pname = "SDL_stretch";
+  version = "0.3.1";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/sdl-stretch/${version}/${pname}-${version}.tar.bz2";
+    sha256 = "1mzw68sn4yxbp8429jg2h23h8xw2qjid51z1f5pdsghcn3x0pgvw";
+  };
+
+  buildInputs = [ SDL ];
+
+  meta = with lib; {
+     description = "Stretch Functions For SDL";
+     homepage = "http://sdl-stretch.sourceforge.net/";
+     license = licenses.lgpl2;
+     platforms = platforms.linux;
+  };
+}