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

120 lines
2.4 KiB
Nix
Raw Normal View History

2020-02-07 22:09:48 +00:00
{ stdenv
, fetchurl
, fetchpatch
, pkgconfig
, gtk-doc
, gobject-introspection
, gjs
, nixosTests
, glib
, systemd
, xz
, e2fsprogs
, libsoup
, gpgme
, which
, autoconf
, automake
, libtool
, fuse
, utillinuxMinimal
, libselinux
, libarchive
, libcap
, bzip2
, yacc
, libxslt
, docbook_xsl
, docbook_xml_dtd_42
, python3
2014-11-07 05:30:04 +00:00
}:
2018-12-24 22:54:25 +00:00
stdenv.mkDerivation rec {
pname = "ostree";
version = "2019.2";
2014-11-07 05:30:04 +00:00
outputs = [ "out" "dev" "man" "installedTests" ];
2018-12-24 22:54:25 +00:00
src = fetchurl {
url = "https://github.com/ostreedev/ostree/releases/download/v${version}/libostree-${version}.tar.xz";
sha256 = "0nbbrz3p4ms6vpl272q6fimqvizryw2a8mnfqcn69xf03sz5204y";
2014-11-07 05:30:04 +00:00
};
patches = [
# Workarounds for https://github.com/ostreedev/ostree/issues/1592
./fix-1592.patch
2020-02-07 22:09:48 +00:00
# Disable test-gpg-verify-result.test,
# https://github.com/ostreedev/ostree/issues/1634
./disable-test-gpg-verify-result.patch
2020-02-07 22:09:48 +00:00
# Tests access the helper using relative path
# https://github.com/ostreedev/ostree/issues/1593
./01-Drop-ostree-trivial-httpd-CLI-move-to-tests-director.patch
];
2014-11-07 05:30:04 +00:00
nativeBuildInputs = [
2020-02-07 22:09:48 +00:00
autoconf
automake
libtool
pkgconfig
gtk-doc
gobject-introspection
which
yacc
libxslt
docbook_xsl
docbook_xml_dtd_42
2014-11-07 05:30:04 +00:00
];
buildInputs = [
2020-02-07 22:09:48 +00:00
glib
systemd
e2fsprogs
libsoup
gpgme
fuse
libselinux
libcap
libarchive
bzip2
xz
utillinuxMinimal # for libmount
2020-02-07 22:09:48 +00:00
# for installed tests
(python3.withPackages (p: with p; [ pyyaml ]))
gjs
];
2016-04-26 00:50:10 +00:00
preConfigure = ''
env NOCONFIGURE=1 ./autogen.sh
2014-11-07 05:30:04 +00:00
'';
2016-04-26 00:50:10 +00:00
2018-09-06 09:51:04 +00:00
enableParallelBuilding = true;
configureFlags = [
2018-12-24 22:54:25 +00:00
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
"--with-systemdsystemgeneratordir=${placeholder "out"}/lib/systemd/system-generators"
"--enable-installed-tests"
];
makeFlags = [
2018-12-24 22:54:25 +00:00
"installed_testdir=${placeholder "installedTests"}/libexec/installed-tests/libostree"
"installed_test_metadir=${placeholder "installedTests"}/share/installed-tests/libostree"
];
2019-11-07 13:39:54 +00:00
passthru = {
tests = {
installedTests = nixosTests.installed-tests.ostree;
};
};
2016-04-26 00:50:10 +00:00
meta = with stdenv.lib; {
description = "Git for operating system binaries";
2020-02-07 22:09:48 +00:00
homepage = "https://ostree.readthedocs.io/en/latest/";
license = licenses.lgpl2Plus;
platforms = platforms.linux;
2016-04-26 00:50:10 +00:00
maintainers = with maintainers; [ copumpkin ];
};
2014-11-07 05:30:04 +00:00
}