uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
149
pkgs/tools/misc/ostree/default.nix
Normal file
149
pkgs/tools/misc/ostree/default.nix
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, fetchpatch
|
||||
, substituteAll
|
||||
, pkg-config
|
||||
, gtk-doc
|
||||
, gobject-introspection
|
||||
, gjs
|
||||
, nixosTests
|
||||
, glib
|
||||
, systemd
|
||||
, xz
|
||||
, e2fsprogs
|
||||
, libsoup
|
||||
, glib-networking
|
||||
, wrapGAppsHook
|
||||
, gpgme
|
||||
, which
|
||||
, makeWrapper
|
||||
, autoconf
|
||||
, automake
|
||||
, libtool
|
||||
, fuse3
|
||||
, util-linuxMinimal
|
||||
, libselinux
|
||||
, libsodium
|
||||
, libarchive
|
||||
, libcap
|
||||
, bzip2
|
||||
, bison
|
||||
, libxslt
|
||||
, docbook-xsl-nons
|
||||
, docbook_xml_dtd_42
|
||||
, openssl
|
||||
, python3
|
||||
}:
|
||||
|
||||
let
|
||||
testPython = (python3.withPackages (p: with p; [
|
||||
pyyaml
|
||||
]));
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "ostree";
|
||||
version = "2022.2";
|
||||
|
||||
outputs = [ "out" "dev" "man" "installedTests" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ostreedev/ostree/releases/download/v${version}/libostree-${version}.tar.xz";
|
||||
sha256 = "sha256-duL1tXhNjLaG6QvjL87LtWxsaoJOA3ShpoILV3EDZ2s=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Tests access the helper using relative path
|
||||
# https://github.com/ostreedev/ostree/issues/1593
|
||||
# Patch from https://github.com/ostreedev/ostree/pull/1633
|
||||
./01-Drop-ostree-trivial-httpd-CLI-move-to-tests-director.patch
|
||||
|
||||
# Workarounds for https://github.com/ostreedev/ostree/issues/1592
|
||||
./fix-1592.patch
|
||||
|
||||
# Hard-code paths in tests
|
||||
(substituteAll {
|
||||
src = ./fix-test-paths.patch;
|
||||
python3 = testPython.interpreter;
|
||||
openssl = "${openssl}/bin/openssl";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoconf
|
||||
automake
|
||||
libtool
|
||||
pkg-config
|
||||
gtk-doc
|
||||
gobject-introspection
|
||||
which
|
||||
makeWrapper
|
||||
bison
|
||||
libxslt
|
||||
docbook-xsl-nons
|
||||
docbook_xml_dtd_42
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
systemd
|
||||
e2fsprogs
|
||||
libsoup
|
||||
glib-networking
|
||||
gpgme
|
||||
fuse3
|
||||
libselinux
|
||||
libsodium
|
||||
libcap
|
||||
libarchive
|
||||
bzip2
|
||||
xz
|
||||
util-linuxMinimal # for libmount
|
||||
|
||||
# for installed tests
|
||||
testPython
|
||||
gjs
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [
|
||||
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
||||
"--with-systemdsystemgeneratordir=${placeholder "out"}/lib/systemd/system-generators"
|
||||
"--enable-installed-tests"
|
||||
"--with-ed25519-libsodium"
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"installed_testdir=${placeholder "installedTests"}/libexec/installed-tests/libostree"
|
||||
"installed_test_metadir=${placeholder "installedTests"}/share/installed-tests/libostree"
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
env NOCONFIGURE=1 ./autogen.sh
|
||||
'';
|
||||
|
||||
postFixup = let
|
||||
typelibPath = lib.makeSearchPath "/lib/girepository-1.0" [
|
||||
(placeholder "out")
|
||||
gobject-introspection
|
||||
];
|
||||
in ''
|
||||
for test in $installedTests/libexec/installed-tests/libostree/*.js; do
|
||||
wrapProgram "$test" --prefix GI_TYPELIB_PATH : "${typelibPath}"
|
||||
done
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
tests = {
|
||||
installedTests = nixosTests.installed-tests.ostree;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Git for operating system binaries";
|
||||
homepage = "https://ostree.readthedocs.io/en/latest/";
|
||||
license = licenses.lgpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ copumpkin ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue