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