1{ stdenv, fetchurl, SDL }:
2
3stdenv.mkDerivation rec {
4 name = "SDL_stretch-${version}";
5 version = "0.3.1";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/sdl-stretch/${version}/${name}.tar.bz2";
9 sha256 = "1mzw68sn4yxbp8429jg2h23h8xw2qjid51z1f5pdsghcn3x0pgvw";
10 };
11
12 buildInputs = [ SDL ];
13
14 meta = with stdenv.lib; {
15 description = "Stretch Functions For SDL";
16 homepage = http://sdl-stretch.sourceforge.net/;
17 license = licenses.lgpl2;
18 platforms = platforms.linux;
19 };
20}