lol

libcroco: 0.6.11 -> 0.6.12

+7 -3
+7 -3
pkgs/desktops/gnome-3/3.22/core/libcroco/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, libxml2, glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "libcroco-0.6.11"; 4 + name = "libcroco-0.6.12"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://gnome/sources/libcroco/0.6/${name}.tar.xz"; 8 - sha256 = "0mm0wldbi40am5qn0nv7psisbg01k42rwzjxl3gv11l5jj554aqk"; 8 + sha256 = "0q7qhi7z64i26zabg9dbs5706fa8pmzp1qhpa052id4zdiabbi6x"; 9 9 }; 10 10 11 11 outputs = [ "out" "dev" ]; ··· 13 13 14 14 configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-Bsymbolic"; 15 15 16 - buildInputs = [ pkgconfig libxml2 glib ]; 16 + nativeBuildInputs = [ pkgconfig ]; 17 + buildInputs = [ libxml2 glib ]; 17 18 18 19 meta = with stdenv.lib; { 20 + description = "GNOME CSS2 parsing and manipulation toolkit"; 21 + homepage = "https://git.gnome.org/browse/libcroco"; 22 + license = licenses.lgpl2; 19 23 platforms = platforms.unix; 20 24 }; 21 25 }