ostree: new package
This commit is contained in:
parent
95350bb659
commit
33d1a9a3cf
33
pkgs/tools/misc/ostree/default.nix
Normal file
33
pkgs/tools/misc/ostree/default.nix
Normal 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
|
||||||
|
'';
|
||||||
|
}
|
@ -1967,6 +1967,8 @@ let
|
|||||||
|
|
||||||
ossec = callPackage ../tools/security/ossec {};
|
ossec = callPackage ../tools/security/ossec {};
|
||||||
|
|
||||||
|
ostree = callPackage ../tools/misc/ostree { };
|
||||||
|
|
||||||
otpw = callPackage ../os-specific/linux/otpw { };
|
otpw = callPackage ../os-specific/linux/otpw { };
|
||||||
|
|
||||||
p7zip = callPackage ../tools/archivers/p7zip { };
|
p7zip = callPackage ../tools/archivers/p7zip { };
|
||||||
|
Loading…
Reference in New Issue
Block a user