nixpkgs/pkgs/by-name/rp/rpm-ostree/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

126 lines
2.3 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
2022-04-24 22:10:31 +00:00
, python3
2020-02-07 22:11:34 +00:00
, 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";
2024-09-15 02:09:17 +00:00
version = "2024.8";
2020-02-07 22:11:34 +00:00
outputs = [ "out" "dev" "man" "devdoc" ];
2018-11-23 14:06:22 +00:00
src = fetchurl {
treewide: change `${pname}` to string literal, pt2 (#336195) * aescrypt: change `${pname}` to string literal * bandwidth: change `${pname}` to string literal * bc: change `${pname}` to string literal * bdfresize: change `${pname}` to string literal * birdfont: change `${pname}` to string literal * brltty: change `${pname}` to string literal * calamares: change `${pname}` to string literal * ccal: change `${pname}` to string literal * clac: change `${pname}` to string literal * colord-gtk4: change `${pname}` to string literal * colord: change `${pname}` to string literal * colorless: change `${pname}` to string literal * cunit: change `${pname}` to string literal * datamash: change `${pname}` to string literal * dateutils: change `${pname}` to string literal * desktop-file-utils: change `${pname}` to string literal * digitemp: change `${pname}` to string literal * ding-libs: change `${pname}` to string literal * docbook2mdoc: change `${pname}` to string literal * dtach: change `${pname}` to string literal * empty: change `${pname}` to string literal * entr: change `${pname}` to string literal * envsubst: change `${pname}` to string literal * ethtool: change `${pname}` to string literal * fdtools: change `${pname}` to string literal * filebench: change `${pname}` to string literal * findutils: change `${pname}` to string literal * fortune: change `${pname}` to string literal * fpart: change `${pname}` to string literal * fxlinuxprintutil: change `${pname}` to string literal * gbdfed: change `${pname}` to string literal * getopt: change `${pname}` to string literal * github-copilot-cli: change `${pname}` to string literal * gparted: change `${pname}` to string literal * hddtemp: change `${pname}` to string literal * hdfview: change `${pname}` to string literal * hpcg: change `${pname}` to string literal * hpl: change `${pname}` to string literal * ink: change `${pname}` to string literal * ised: change `${pname}` to string literal * isoimagewriter: change `${pname}` to string literal * kronometer: change `${pname}` to string literal * libsForQt5.qt5ct: change `${pname}` to string literal * lilo: change `${pname}` to string literal * lockfileProgs: change `${pname}` to string literal * map-cmd: change `${pname}` to string literal * mcrypt: change `${pname}` to string literal * most: change `${pname}` to string literal * mrtg: change `${pname}` to string literal * ms-sys: change `${pname}` to string literal * multitime: change `${pname}` to string literal * nbench: change `${pname}` to string literal * osinfo-db-tools: change `${pname}` to string literal * parallel-full: change `${pname}` to string literal * phoronix-test-suite: change `${pname}` to string literal * pod2mdoc: change `${pname}` to string literal * powerline-rs: change `${pname}` to string literal * recoverjpeg: change `${pname}` to string literal * recutils: change `${pname}` to string literal * routino: change `${pname}` to string literal * rpm-ostree: change `${pname}` to string literal * screen: change `${pname}` to string literal * sharedown: change `${pname}` to string literal * statserial: change `${pname}` to string literal * taoup: change `${pname}` to string literal * texi2mdoc: change `${pname}` to string literal * tmpwatch: change `${pname}` to string literal * toilet: change `${pname}` to string literal * triehash: change `${pname}` to string literal * ttfautohint: change `${pname}` to string literal * txt2man: change `${pname}` to string literal * urjtag: change `${pname}` to string literal * uudeview: change `${pname}` to string literal * uutils-coreutils: change `${pname}` to string literal * vttest: change `${pname}` to string literal * wacomtablet: change `${pname}` to string literal * xcd: change `${pname}` to string literal * xdaliclock: change `${pname}` to string literal * xjobs: change `${pname}` to string literal * feishin: change `${pname}` to string literal * gifsicle: change `${pname}` to string literal * nzbhydra2: change `${pname}` to string literal * vatprism: change `${pname}` to string literal * webfs: change `${pname}` to string literal * yggstack: change `${pname}` to string literal
2024-08-21 00:23:37 +00:00
url = "https://github.com/coreos/rpm-ostree/releases/download/v${version}/rpm-ostree-${version}.tar.xz";
2024-09-15 02:09:17 +00:00
hash = "sha256-6aCGP3SJ0DegmhiQkiqBr733C5vuDGTjLMaxNtai3G0=";
};
2018-06-03 01:06:15 +00:00
nativeBuildInputs = [
2022-04-24 22:10:31 +00:00
python3
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
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 = "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;
2023-11-27 01:17:53 +00:00
mainProgram = "rpm-ostree";
};
2016-04-29 03:20:04 +00:00
}