imlib2: 1.7.3 -> 1.7.5

c0bw3b 597f76f0 f4d82e40

+5 -13
+5 -13
pkgs/development/libraries/imlib2/default.nix
··· 12 in 13 stdenv.mkDerivation rec { 14 pname = "imlib2"; 15 - version = "1.7.3"; 16 17 src = fetchurl { 18 - url = "mirror://sourceforge/enlightenment/${pname}-${version}.tar.bz2"; 19 - sha256 = "sha256-FY0LjCC8ESIa+ed6ZKEW/KcFGwPN6ixPMdMfRpOC+Zc="; 20 }; 21 22 buildInputs = [ ··· 28 29 enableParallelBuilding = true; 30 31 - preConfigure = '' 32 - substituteInPlace imlib2-config.in \ 33 - --replace "@my_libs@" "" 34 - ''; 35 - 36 # Do not build amd64 assembly code on Darwin, because it fails to compile 37 # with unknow directive errors 38 configureFlags = optional stdenv.isDarwin "--enable-amd64=no" 39 ++ optional (!x11Support) "--without-x"; 40 41 outputs = [ "bin" "out" "dev" ]; 42 - 43 - postInstall = '' 44 - moveToOutput bin/imlib2-config "$dev" 45 - ''; 46 47 meta = with lib; { 48 description = "Image manipulation library"; ··· 56 ''; 57 58 homepage = "https://docs.enlightenment.org/api/imlib2/html"; 59 - license = licenses.mit; 60 platforms = platforms.unix; 61 maintainers = with maintainers; [ spwhitt ]; 62 };
··· 12 in 13 stdenv.mkDerivation rec { 14 pname = "imlib2"; 15 + version = "1.7.5"; 16 17 src = fetchurl { 18 + url = "mirror://sourceforge/enlightenment/${pname}-${version}.tar.xz"; 19 + hash = "sha256-RY2DAKp6bUzjU1GDi7pdn9+wiES9WxU8WTjs/kP/Ngo="; 20 }; 21 22 buildInputs = [ ··· 28 29 enableParallelBuilding = true; 30 31 # Do not build amd64 assembly code on Darwin, because it fails to compile 32 # with unknow directive errors 33 configureFlags = optional stdenv.isDarwin "--enable-amd64=no" 34 ++ optional (!x11Support) "--without-x"; 35 36 outputs = [ "bin" "out" "dev" ]; 37 38 meta = with lib; { 39 description = "Image manipulation library"; ··· 47 ''; 48 49 homepage = "https://docs.enlightenment.org/api/imlib2/html"; 50 + changelog = "https://git.enlightenment.org/legacy/imlib2.git/plain/ChangeLog?h=v${version}"; 51 + license = licenses.imlib2; 52 platforms = platforms.unix; 53 maintainers = with maintainers; [ spwhitt ]; 54 };