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