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

60 lines
1.7 KiB
Nix
Raw Normal View History

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