2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2021-01-17 03:51:22 +00:00
|
|
|
, autoreconfHook, pkg-config, docbook_xsl, libxslt, docbook_xml_dtd_45
|
2018-07-17 20:11:16 +00:00
|
|
|
, acl, attr, boost, btrfs-progs, dbus, diffutils, e2fsprogs, libxml2
|
2022-04-24 00:54:04 +00:00
|
|
|
, lvm2, pam, util-linux, json_c, nixosTests
|
2020-12-31 11:33:07 +00:00
|
|
|
, ncurses }:
|
2014-09-23 09:46:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "snapper";
|
2022-12-19 21:04:10 +00:00
|
|
|
version = "0.10.4";
|
2016-01-18 15:16:29 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openSUSE";
|
|
|
|
repo = "snapper";
|
2016-01-20 07:00:06 +00:00
|
|
|
rev = "v${version}";
|
2022-12-19 21:04:10 +00:00
|
|
|
sha256 = "sha256-Eq9b49zEIb3wMHUw9/jpfYDaMXBY5JHZ2u5RTTtD5I8=";
|
2014-09-23 09:46:56 +00:00
|
|
|
};
|
|
|
|
|
2016-01-18 18:24:54 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:51:22 +00:00
|
|
|
autoreconfHook pkg-config
|
2016-01-19 00:39:34 +00:00
|
|
|
docbook_xsl libxslt docbook_xml_dtd_45
|
|
|
|
];
|
|
|
|
buildInputs = [
|
2018-07-17 20:11:16 +00:00
|
|
|
acl attr boost btrfs-progs dbus diffutils e2fsprogs libxml2
|
2022-04-24 00:54:04 +00:00
|
|
|
lvm2 pam util-linux json_c ncurses
|
2016-01-18 18:24:54 +00:00
|
|
|
];
|
2014-09-23 09:46:56 +00:00
|
|
|
|
2020-06-25 21:57:59 +00:00
|
|
|
passthru.tests.snapper = nixosTests.snapper;
|
|
|
|
|
2016-01-20 07:00:06 +00:00
|
|
|
postPatch = ''
|
|
|
|
# Hard-coded root paths, hard-coded root paths everywhere...
|
2019-12-24 23:07:12 +00:00
|
|
|
for file in {client,data,pam,scripts,zypp-plugin}/Makefile.am; do
|
2016-01-20 07:00:06 +00: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 18:45:04 +00:00
|
|
|
'';
|
2014-09-23 09:46:56 +00:00
|
|
|
|
2016-01-20 07:00:06 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-ext4" # requires patched kernel & e2fsprogs
|
|
|
|
];
|
2014-09-23 09:46:56 +00:00
|
|
|
|
2016-01-20 07:00:06 +00:00
|
|
|
enableParallelBuilding = true;
|
2014-09-23 09:46:56 +00:00
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2";
|
2014-09-23 09:46:56 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2016-01-20 07:00:06 +00: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 09:46:56 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-09-23 09:46:56 +00:00
|
|
|
description = "Tool for Linux filesystem snapshot management";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://snapper.io";
|
2021-02-01 12:49:37 +00:00
|
|
|
license = licenses.gpl2Only;
|
2014-09-23 09:46:56 +00:00
|
|
|
platforms = platforms.linux;
|
2022-06-22 23:40:02 +00:00
|
|
|
maintainers = with maintainers; [ markuskowa ];
|
2014-09-23 09:46:56 +00:00
|
|
|
};
|
|
|
|
}
|