2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2021-01-17 04:51:22 +01:00
|
|
|
, autoreconfHook, pkg-config, docbook_xsl, libxslt, docbook_xml_dtd_45
|
2018-07-17 22:11:16 +02:00
|
|
|
, acl, attr, boost, btrfs-progs, dbus, diffutils, e2fsprogs, libxml2
|
2020-12-31 12:33:07 +01:00
|
|
|
, lvm2, pam, python, util-linux, fetchpatch, json_c, nixosTests
|
|
|
|
, ncurses }:
|
2014-09-23 11:46:56 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "snapper";
|
2020-12-31 12:33:07 +01:00
|
|
|
version = "0.8.15";
|
2016-01-18 16:16:29 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openSUSE";
|
|
|
|
repo = "snapper";
|
2016-01-20 08:00:06 +01:00
|
|
|
rev = "v${version}";
|
2020-12-31 12:33:07 +01:00
|
|
|
sha256 = "1rqv1qfxr02qbkix1mpx91s4827irxryxkhby3ii0fdkm3ympsas";
|
2014-09-23 11:46:56 +02:00
|
|
|
};
|
|
|
|
|
2016-01-18 19:24:54 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 04:51:22 +01:00
|
|
|
autoreconfHook pkg-config
|
2016-01-19 01:39:34 +01:00
|
|
|
docbook_xsl libxslt docbook_xml_dtd_45
|
|
|
|
];
|
|
|
|
buildInputs = [
|
2018-07-17 22:11:16 +02:00
|
|
|
acl attr boost btrfs-progs dbus diffutils e2fsprogs libxml2
|
2020-12-31 12:33:07 +01:00
|
|
|
lvm2 pam python util-linux json_c ncurses
|
2016-01-18 19:24:54 +01:00
|
|
|
];
|
2014-09-23 11:46:56 +02:00
|
|
|
|
2020-06-25 23:57:59 +02:00
|
|
|
passthru.tests.snapper = nixosTests.snapper;
|
|
|
|
|
2019-09-16 18:33:34 +02:00
|
|
|
patches = [
|
|
|
|
# Don't use etc/dbus-1/system.d
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/openSUSE/snapper/commit/c51708aea22d9436da287cba84424557ad03644b.patch";
|
|
|
|
sha256 = "106pf7pv8z3q37c8ckmgwxs1phf2fy7l53a9g5xq5kk2rjj1cx34";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-01-20 08:00:06 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Hard-coded root paths, hard-coded root paths everywhere...
|
2019-12-25 00:07:12 +01:00
|
|
|
for file in {client,data,pam,scripts,zypp-plugin}/Makefile.am; do
|
2016-01-20 08:00:06 +01:00
|
|
|
substituteInPlace $file \
|
|
|
|
--replace '$(DESTDIR)/usr' "$out" \
|
|
|
|
--replace "DESTDIR" "out" \
|
|
|
|
--replace "/usr" "$out"
|
|
|
|
done
|
|
|
|
substituteInPlace pam/Makefile.am \
|
|
|
|
--replace '/`basename $(libdir)`' "$out/lib"
|
2016-01-18 19:45:04 +01:00
|
|
|
'';
|
2014-09-23 11:46:56 +02:00
|
|
|
|
2016-01-20 08:00:06 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-ext4" # requires patched kernel & e2fsprogs
|
|
|
|
];
|
2014-09-23 11:46:56 +02:00
|
|
|
|
2016-01-20 08:00:06 +01:00
|
|
|
enableParallelBuilding = true;
|
2014-09-23 11:46:56 +02:00
|
|
|
|
2019-10-30 12:34:47 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2";
|
2014-09-23 11:46:56 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
2016-01-20 08:00:06 +01:00
|
|
|
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
|
|
|
|
'';
|
2014-09-23 11:46:56 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-09-23 11:46:56 +02:00
|
|
|
description = "Tool for Linux filesystem snapshot management";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://snapper.io";
|
2021-02-01 13:49:37 +01:00
|
|
|
license = licenses.gpl2Only;
|
2014-09-23 11:46:56 +02:00
|
|
|
platforms = platforms.linux;
|
2019-02-09 20:49:35 +01:00
|
|
|
maintainers = with maintainers; [ tstrobel markuskowa ];
|
2014-09-23 11:46:56 +02:00
|
|
|
};
|
|
|
|
}
|