mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
125 lines
2.2 KiB
Nix
125 lines
2.2 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, ostree
|
|
, rpm
|
|
, which
|
|
, autoconf
|
|
, automake
|
|
, libtool
|
|
, pkgconfig
|
|
, 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
|
|
, util-linux
|
|
, sqlite
|
|
, cppunit
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rpm-ostree";
|
|
version = "2020.8";
|
|
|
|
outputs = [ "out" "dev" "man" "devdoc" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/coreos/${pname}/releases/download/v${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1iyl6bjkj3drlwds579bh25xcmlwj9lkkbdmcdanq5b3shbmpyhi";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
which
|
|
autoconf
|
|
automake
|
|
libtool
|
|
cmake
|
|
gperf
|
|
cargo
|
|
rustc
|
|
gobject-introspection
|
|
gtk-doc
|
|
libxml2
|
|
libxslt
|
|
docbook_xsl
|
|
docbook_xml_dtd_42
|
|
docbook_xml_dtd_43
|
|
];
|
|
|
|
buildInputs = [
|
|
libcap
|
|
ostree
|
|
rpm
|
|
glib
|
|
systemd
|
|
polkit
|
|
bubblewrap
|
|
json-glib
|
|
libarchive
|
|
libsolv
|
|
librepo
|
|
pcre
|
|
check
|
|
python
|
|
|
|
# libdnf # vendored unstable branch
|
|
# required by vendored libdnf
|
|
json_c
|
|
zchunk
|
|
libmodulemd
|
|
util-linux # for smartcols.pc
|
|
sqlite
|
|
cppunit
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-gtk-doc"
|
|
"--with-bubblewrap=${bubblewrap}/bin/bwrap"
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
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...
|
|
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"'
|
|
'';
|
|
|
|
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/";
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|