ostree: new package

This commit is contained in:
宋文武 2014-11-07 13:30:04 +08:00 committed by 宋文武
parent 95350bb659
commit 33d1a9a3cf
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk_doc, gobjectIntrospection
, libgsystem, xz, e2fsprogs, libsoup, gpgme
}:
stdenv.mkDerivation {
name = "ostree-2014.11";
meta = with stdenv.lib; {
description = "Git for operating system binaries";
homepage = "http://live.gnome.org/OSTree/";
license = licenses.lgpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ iyzsong ];
};
src = fetchFromGitHub {
owner = "GNOME";
repo = "ostree";
rev = "v2014.11";
sha256 = "152s94r744lyz64syagha2c4y4afblc178lr9mkk8h2d4xvp6nf5";
};
nativeBuildInputs = [
autoreconfHook pkgconfig gtk_doc gobjectIntrospection
];
buildInputs = [ libgsystem xz e2fsprogs libsoup gpgme ];
preAutoreconf = ''
mkdir m4
gtkdocize
'';
}

View File

@ -1967,6 +1967,8 @@ let
ossec = callPackage ../tools/security/ossec {};
ostree = callPackage ../tools/misc/ostree { };
otpw = callPackage ../os-specific/linux/otpw { };
p7zip = callPackage ../tools/archivers/p7zip { };