2015-01-15 00:28:41 +00:00
|
|
|
{ stdenv, fetchurl, SDL }:
|
|
|
|
|
2016-08-22 04:24:00 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "SDL_stretch-${version}";
|
|
|
|
version = "0.3.1";
|
2015-01-15 00:28:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-22 04:24:00 +01:00
|
|
|
url = "mirror://sourceforge/sdl-stretch/${version}/${name}.tar.bz2";
|
2015-01-15 00:28:41 +00:00
|
|
|
sha256 = "1mzw68sn4yxbp8429jg2h23h8xw2qjid51z1f5pdsghcn3x0pgvw";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ SDL ];
|
|
|
|
|
2016-08-22 04:24:00 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-01-15 00:28:41 +00:00
|
|
|
description = "Stretch Functions For SDL";
|
|
|
|
homepage = "http://sdl-stretch.sourceforge.net/";
|
2016-08-22 04:24:00 +01:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.linux;
|
2015-01-15 00:28:41 +00:00
|
|
|
};
|
|
|
|
}
|