Merge pull request #19399 from sternenseemann/master
Add libgee_0_8 and valadoc-unstable
This commit is contained in:
27
pkgs/development/libraries/libgee/0.8.nix
Normal file
27
pkgs/development/libraries/libgee/0.8.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchurl, pkgconfig, glib }:
|
||||
|
||||
let
|
||||
ver_maj = "0.8";
|
||||
ver_min = "6";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libgee-${ver_maj}.${ver_min}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.gnome.org/sources/libgee/${ver_maj}/${name}.tar.xz";
|
||||
sha256 = "1mp3bfghc8qh2v8h2pfhksda22mgy2d5ygm1jr3bir544nr8i4fg";
|
||||
};
|
||||
|
||||
buildInputs = [ glib ];
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.linux;
|
||||
homepage = "http://live.gnome.org/Libgee";
|
||||
maintainers = with maintainers; [ sternenseemann ];
|
||||
};
|
||||
}
|
||||
24
pkgs/development/tools/valadoc/default.nix
Normal file
24
pkgs/development/tools/valadoc/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{stdenv, fetchgit, gnome3, automake, autoconf, which, libtool, pkgconfig, graphviz, glib, libgee_0_8, gobjectIntrospection, expat}:
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2016-10-09";
|
||||
name = "valadoc-unstable-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://git.gnome.org/valadoc";
|
||||
rev = "37756970379d1363453562e9f2af2c354d172fb4";
|
||||
sha256 = "1s9sf6f0srh5sqqikswnb3bgwv5s1r9bd4n10hs2lzfmh7z227qb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ automake autoconf which gnome3.vala libtool pkgconfig gobjectIntrospection ];
|
||||
buildInputs = [ graphviz glib libgee_0_8 expat ];
|
||||
|
||||
preConfigure = "./autogen.sh";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "valadoc is a documentation generator for generating API documentation from Vala source code";
|
||||
homepage = http://valadoc.org;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = with maintainers; [ sternenseemann ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user