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
68
pkgs/tools/misc/snapper/default.nix
Normal file
68
pkgs/tools/misc/snapper/default.nix
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
{ lib, stdenv, fetchFromGitHub
|
||||
, autoreconfHook, pkg-config, docbook_xsl, libxslt, docbook_xml_dtd_45
|
||||
, acl, attr, boost, btrfs-progs, dbus, diffutils, e2fsprogs, libxml2
|
||||
, lvm2, pam, util-linux, json_c, nixosTests
|
||||
, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "snapper";
|
||||
version = "0.10.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "openSUSE";
|
||||
repo = "snapper";
|
||||
rev = "v${version}";
|
||||
sha256 = "0x9anracaa19yqkc0x8wangrkdrx01kdy07c55lvlqrjyimfm4ih";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook pkg-config
|
||||
docbook_xsl libxslt docbook_xml_dtd_45
|
||||
];
|
||||
buildInputs = [
|
||||
acl attr boost btrfs-progs dbus diffutils e2fsprogs libxml2
|
||||
lvm2 pam util-linux json_c ncurses
|
||||
];
|
||||
|
||||
passthru.tests.snapper = nixosTests.snapper;
|
||||
|
||||
postPatch = ''
|
||||
# Hard-coded root paths, hard-coded root paths everywhere...
|
||||
for file in {client,data,pam,scripts,zypp-plugin}/Makefile.am; do
|
||||
substituteInPlace $file \
|
||||
--replace '$(DESTDIR)/usr' "$out" \
|
||||
--replace "DESTDIR" "out" \
|
||||
--replace "/usr" "$out"
|
||||
done
|
||||
substituteInPlace pam/Makefile.am \
|
||||
--replace '/`basename $(libdir)`' "$out/lib"
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
"--disable-ext4" # requires patched kernel & e2fsprogs
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2";
|
||||
|
||||
postInstall = ''
|
||||
rm -r $out/etc/cron.*
|
||||
patchShebangs $out/lib/zypp/plugins/commit/*
|
||||
for file in \
|
||||
$out/lib/pam_snapper/* \
|
||||
$out/lib/systemd/system/* \
|
||||
$out/share/dbus-1/system-services/* \
|
||||
; do
|
||||
substituteInPlace $file --replace "/usr" "$out"
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool for Linux filesystem snapshot management";
|
||||
homepage = "http://snapper.io";
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ tstrobel markuskowa ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue