Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / SDL_stretch / default.nix
blob99f86dd258b37343bca6957dc4117980b498f65d
1 { lib, stdenv, fetchurl, SDL }:
3 stdenv.mkDerivation rec {
4   pname = "SDL_stretch";
5   version = "0.3.1";
7   src = fetchurl {
8     url = "mirror://sourceforge/sdl-stretch/${version}/${pname}-${version}.tar.bz2";
9     sha256 = "1mzw68sn4yxbp8429jg2h23h8xw2qjid51z1f5pdsghcn3x0pgvw";
10   };
12   buildInputs = [ SDL ];
14   meta = with lib; {
15      description = "Stretch Functions For SDL";
16      homepage = "https://sdl-stretch.sourceforge.net/";
17      license = licenses.lgpl2;
18      platforms = platforms.linux;
19   };