From 825f976b272d833275a04236247e8fe8345616fd Mon Sep 17 00:00:00 2001 From: Eduard Bachmakov Date: Wed, 14 Jan 2015 19:28:41 -0500 Subject: Add package: SDL_stretch-0.3.1 Added in preparation for 3dfsb. --- pkgs/development/libraries/SDL_stretch/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkgs/development/libraries/SDL_stretch/default.nix (limited to 'pkgs/development/libraries/SDL_stretch') 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; + }; +} -- cgit 1.4.1