mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
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
597 B
Nix
21 lines
597 B
Nix
{ stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, libungif, libXpm, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "SDL2_image-${version}";
|
|
version = "2.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
|
|
sha256 = "0r3z1l7fdn76qkpy7snpkcjqz8dkv2zp6lsqpq25q4m5xsyaygis";
|
|
};
|
|
|
|
buildInputs = [ SDL2 libpng libjpeg libtiff libungif libXpm zlib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "SDL image library";
|
|
homepage = http://www.libsdl.org/projects/SDL_image/;
|
|
platforms = platforms.linux;
|
|
license = licenses.zlib;
|
|
};
|
|
}
|