fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{stdenv, fetchurl, pkgconfig, glib, libxml2, gtkdoc}:
2
3let
4 pname = "gdome2";
5 version = "0.8.1";
6in
7
8stdenv.mkDerivation {
9 name = "${pname}-${version}";
10
11 src = fetchurl {
12 url = "http://gdome2.cs.unibo.it/tarball/${pname}-${version}.tar.gz";
13 sha256 = "0hyms5s3hziajp3qbwdwqjc2xcyhb783damqg8wxjpwfxyi81fzl";
14 };
15
16 hardeningDisable = [ "format" ];
17
18 buildInputs = [pkgconfig glib libxml2 gtkdoc];
19 propagatedBuildInputs = [glib libxml2];
20 patches = [ ./xml-document.patch ];
21
22 meta = with stdenv.lib; {
23 homepage = http://gdome2.cs.unibo.it/;
24 description = "DOM C library developed for the Gnome project";
25 license = licenses.lgpl21Plus;
26 maintainers = with maintainers; [ prikhi roconnor ];
27 platforms = platforms.linux;
28 };
29}