2015-11-17 18:40:03 +01:00
|
|
|
{ stdenv, fetchurl, gnome3, libtool, pkgconfig, vala, libssh2
|
2015-09-25 10:36:01 +02:00
|
|
|
, gtk_doc, gobjectIntrospection, libgit2, glib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-11-17 18:40:03 +01:00
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
2015-09-25 10:36:01 +02:00
|
|
|
|
2015-11-17 18:40:03 +01:00
|
|
|
buildInputs = [ gnome3.gnome_common libtool pkgconfig vala libssh2
|
2015-09-25 10:36:01 +02:00
|
|
|
gtk_doc gobjectIntrospection libgit2 glib ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|