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

125 lines
2.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-02-07 22:11:34 +00:00
, fetchurl
, ostree
, rpm
, which
, autoconf
, automake
, libtool
2021-01-17 03:51:22 +00:00
, pkg-config
2020-02-07 22:11:34 +00:00
, cargo
, rustc
, gobject-introspection
, gtk-doc
, libxml2
, libxslt
, docbook_xsl
, docbook_xml_dtd_42
, docbook_xml_dtd_43
, gperf
, cmake
, libcap
, glib
, systemd
, json-glib
, libarchive
, libsolv
, librepo
, polkit
, bubblewrap
, pcre
, check
, python
, json_c
, zchunk
, libmodulemd
2020-11-24 15:29:28 +00:00
, util-linux
2020-02-07 22:11:34 +00:00
, sqlite
, cppunit
}:
2016-04-29 03:20:04 +00:00
2018-11-23 14:06:22 +00:00
stdenv.mkDerivation rec {
pname = "rpm-ostree";
2021-02-18 15:43:25 +00:00
version = "2021.2";
2020-02-07 22:11:34 +00:00
outputs = [ "out" "dev" "man" "devdoc" ];
2018-11-23 14:06:22 +00:00
src = fetchurl {
url = "https://github.com/coreos/${pname}/releases/download/v${version}/${pname}-${version}.tar.xz";
2021-02-18 15:43:25 +00:00
sha256 = "sha256-msu5LReTYupgoS6Rm2nrMz9jauciAD99hh+w8BhSYn4=";
};
2018-06-03 01:06:15 +00:00
nativeBuildInputs = [
2021-01-17 03:51:22 +00:00
pkg-config
2020-02-07 22:11:34 +00:00
which
autoconf
automake
libtool
cmake
gperf
cargo
rustc
gobject-introspection
gtk-doc
libxml2
libxslt
docbook_xsl
docbook_xml_dtd_42
docbook_xml_dtd_43
2018-06-03 01:06:15 +00:00
];
2020-02-07 22:11:34 +00:00
2016-04-29 03:20:04 +00:00
buildInputs = [
2020-02-07 22:11:34 +00:00
libcap
ostree
rpm
glib
systemd
polkit
bubblewrap
json-glib
libarchive
libsolv
librepo
pcre
check
python
2020-04-04 22:14:58 +00:00
# libdnf # vendored unstable branch
# required by vendored libdnf
2020-02-07 22:11:34 +00:00
json_c
zchunk
libmodulemd
2020-11-24 15:29:28 +00:00
util-linux # for smartcols.pc
2020-02-07 22:11:34 +00:00
sqlite
cppunit
2018-06-03 01:06:15 +00:00
];
configureFlags = [
"--enable-gtk-doc"
"--with-bubblewrap=${bubblewrap}/bin/bwrap"
2016-04-29 03:20:04 +00:00
];
dontUseCmakeConfigure = true;
2016-04-29 03:20:04 +00:00
prePatch = ''
# According to #cmake on freenode, libdnf should bundle the FindLibSolv.cmake module
cp ${libsolv}/share/cmake/Modules/FindLibSolv.cmake libdnf/cmake/modules/
# Let's not hardcode the rpm-gpg path...
2018-06-03 01:06:15 +00:00
substituteInPlace libdnf/libdnf/dnf-keyring.cpp \
--replace '"/etc/pki/rpm-gpg"' 'getenv("LIBDNF_RPM_GPG_PATH_OVERRIDE") ? getenv("LIBDNF_RPM_GPG_PATH_OVERRIDE") : "/etc/pki/rpm-gpg"'
2016-04-29 03:20:04 +00:00
'';
preConfigure = ''
env NOCONFIGURE=1 ./autogen.sh
'';
meta = with lib; {
description = "A hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model";
homepage = "https://coreos.github.io/rpm-ostree/";
2018-06-03 01:06:15 +00:00
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ copumpkin ];
2018-06-03 01:06:15 +00:00
platforms = platforms.linux;
};
2016-04-29 03:20:04 +00:00
}