1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/tools/valadoc/default.nix

25 lines
912 B
Nix
Raw Normal View History

{stdenv, fetchgit, gnome3, automake, autoconf, which, libtool, pkgconfig, graphviz, glib, gobjectIntrospection, expat}:
2016-10-09 15:31:50 -04:00
stdenv.mkDerivation rec {
2017-01-25 15:28:45 -05:00
version = "2016-11-11";
2016-10-09 15:31:50 -04:00
name = "valadoc-unstable-${version}";
src = fetchgit {
url = "git://git.gnome.org/valadoc";
2017-01-25 15:28:45 -05:00
rev = "8080b626db9c16ac9a0a9802677b4f6ab0d36d4e";
sha256 = "1y00yls4wgxggzfagm3hcmzkpskfbs3m52pjgl71lg4p85kv6msv";
2016-10-09 15:31:50 -04:00
};
nativeBuildInputs = [ automake autoconf which gnome3.vala libtool pkgconfig gobjectIntrospection ];
buildInputs = [ graphviz glib gnome3.libgee expat ];
2016-10-09 15:31:50 -04:00
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;
};
}