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

60 lines
1.7 KiB
Nix
Raw Normal View History

2014-11-07 06:30:04 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk_doc, gobjectIntrospection
2016-04-26 02:50:10 +02:00
, libgsystem, xz, e2fsprogs, libsoup, gpgme, which, autoconf, automake, libtool, fuse
2017-10-02 15:39:35 +02:00
, libarchive, libcap, bzip2, yacc, libxslt, docbook_xsl, docbook_xml_dtd_42
2014-11-07 06:30:04 +01:00
}:
2016-04-26 02:50:10 +02:00
let
libglnx-src = fetchFromGitHub {
owner = "GNOME";
repo = "libglnx";
2017-10-02 15:39:35 +02:00
rev = "5362f6bc3ff3e30f379e767b203d15c9e56d6f08";
sha256 = "1l4vm7bx3cf4q44n3a1i2gszyryqyimcxvx54gna72q7dw130mrr";
2016-04-26 02:50:10 +02:00
};
2014-11-07 06:30:04 +01:00
2016-04-26 02:50:10 +02:00
bsdiff-src = fetchFromGitHub {
owner = "mendsley";
repo = "bsdiff";
2017-10-02 15:39:35 +02:00
rev = "1edf9f656850c0c64dae260960fabd8249ea9c60";
sha256 = "1h71d2h2d3anp4msvpaff445rnzdxii3id2yglqk7af9i43kdsn1";
2014-11-07 06:30:04 +01:00
};
2017-10-02 15:39:35 +02:00
version = "2017.12";
in stdenv.mkDerivation {
name = "ostree-${version}";
2014-11-07 06:30:04 +01:00
src = fetchFromGitHub {
rev = "v${version}";
2016-04-26 02:50:10 +02:00
owner = "ostreedev";
repo = "ostree";
2017-10-02 15:39:35 +02:00
sha256 = "0gxvpzwz7z4zihz5hkn6ajv7f6gas4zi2pznhi5v6wy7cw06if68";
2014-11-07 06:30:04 +01:00
};
nativeBuildInputs = [
2016-04-26 02:50:10 +02:00
autoconf automake libtool pkgconfig gtk_doc gobjectIntrospection which yacc
libxslt docbook_xsl docbook_xml_dtd_42
2014-11-07 06:30:04 +01:00
];
2017-10-02 15:39:35 +02:00
buildInputs = [ libgsystem xz e2fsprogs libsoup gpgme fuse libarchive libcap bzip2 ];
2016-04-26 02:50:10 +02:00
prePatch = ''
rmdir libglnx bsdiff
cp --no-preserve=mode -r ${libglnx-src} libglnx
cp --no-preserve=mode -r ${bsdiff-src} bsdiff
'';
2014-11-07 06:30:04 +01:00
2016-04-26 02:50:10 +02:00
preConfigure = ''
env NOCONFIGURE=1 ./autogen.sh
configureFlags+="--with-systemdsystemunitdir=$out/lib/systemd/system"
2014-11-07 06:30:04 +01:00
'';
2016-04-26 02:50:10 +02:00
meta = with stdenv.lib; {
description = "Git for operating system binaries";
2017-10-02 15:39:35 +02:00
homepage = https://ostree.readthedocs.io/en/latest/;
2016-04-26 02:50:10 +02:00
license = licenses.lgpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ copumpkin ];
};
2014-11-07 06:30:04 +01:00
}
2016-04-26 02:50:10 +02:00