tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libgee: add missing libgee-1.nix file
Luca Bruno
10 years ago
4181e5cc
a0023674
+26
1 changed file
expand all
collapse all
unified
split
pkgs
desktops
gnome-3
3.18
core
libgee
libgee-1.nix
+26
pkgs/desktops/gnome-3/3.18/core/libgee/libgee-1.nix
···
1
1
+
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection, gnome3 }:
2
2
+
let
3
3
+
ver_maj = "0.6";
4
4
+
ver_min = "8";
5
5
+
in
6
6
+
stdenv.mkDerivation rec {
7
7
+
name = "libgee-${ver_maj}.${ver_min}";
8
8
+
9
9
+
src = fetchurl {
10
10
+
url = "mirror://gnome/sources/libgee/${ver_maj}/${name}.tar.xz";
11
11
+
sha256 = "1lzmxgz1bcs14ghfp8qqzarhn7s64ayx8c508ihizm3kc5wqs7x6";
12
12
+
};
13
13
+
14
14
+
doCheck = true;
15
15
+
16
16
+
patches = [ ./fix_introspection_paths.patch ];
17
17
+
18
18
+
buildInputs = [ autoconf vala pkgconfig glib gobjectIntrospection ];
19
19
+
20
20
+
meta = with stdenv.lib; {
21
21
+
description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";
22
22
+
license = licenses.lgpl21Plus;
23
23
+
platforms = platforms.linux;
24
24
+
maintainers = [ maintainers.spacefrogg ] ++ gnome3.maintainers;
25
25
+
};
26
26
+
}