nixpkgs/pkgs/tools/misc/ostree/default.nix

33 lines
762 B
Nix
Raw Normal View History

2014-11-07 08:30:04 +03:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk_doc, gobjectIntrospection
, libgsystem, xz, e2fsprogs, libsoup, gpgme
}:
stdenv.mkDerivation {
2015-01-28 05:39:02 +03:00
name = "ostree-2015.3";
2014-11-07 08:30:04 +03:00
meta = with stdenv.lib; {
description = "Git for operating system binaries";
homepage = "http://live.gnome.org/OSTree/";
license = licenses.lgpl2Plus;
platforms = platforms.linux;
};
src = fetchFromGitHub {
owner = "GNOME";
repo = "ostree";
2015-01-28 05:39:02 +03:00
rev = "v2015.3";
sha256 = "1n5q0yxwqx4pqiww3yjmqxl5835kknpw1bnwzbpanmyndnnl88dd";
2014-11-07 08:30:04 +03:00
};
nativeBuildInputs = [
autoreconfHook pkgconfig gtk_doc gobjectIntrospection
];
buildInputs = [ libgsystem xz e2fsprogs libsoup gpgme ];
preAutoreconf = ''
mkdir m4
gtkdocize
'';
}