f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
21 lines
505 B
Nix
21 lines
505 B
Nix
{ stdenv, fetchurl, SDL }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "SDL_stretch-${version}";
|
|
version = "0.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sdl-stretch/${version}/${name}.tar.bz2";
|
|
sha256 = "1mzw68sn4yxbp8429jg2h23h8xw2qjid51z1f5pdsghcn3x0pgvw";
|
|
};
|
|
|
|
buildInputs = [ SDL ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Stretch Functions For SDL";
|
|
homepage = http://sdl-stretch.sourceforge.net/;
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|