tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
libcroco: 0.6.11 -> 0.6.12
Franz Pletz
8 years ago
76de6e4f
2d5ede04
+7
-3
1 changed file
expand all
collapse all
unified
split
pkgs
desktops
gnome-3
3.22
core
libcroco
default.nix
+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
4
-
name = "libcroco-0.6.11";
4
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
8
-
sha256 = "0mm0wldbi40am5qn0nv7psisbg01k42rwzjxl3gv11l5jj554aqk";
8
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
16
-
buildInputs = [ pkgconfig libxml2 glib ];
16
16
+
nativeBuildInputs = [ pkgconfig ];
17
17
+
buildInputs = [ libxml2 glib ];
17
18
18
19
meta = with stdenv.lib; {
20
20
+
description = "GNOME CSS2 parsing and manipulation toolkit";
21
21
+
homepage = "https://git.gnome.org/browse/libcroco";
22
22
+
license = licenses.lgpl2;
19
23
platforms = platforms.unix;
20
24
};
21
25
}