2019-06-16 21:59:06 +02:00
|
|
|
{ stdenv, fetchFromGitHub
|
2016-01-19 01:39:34 +01:00
|
|
|
, autoreconfHook, pkgconfig, docbook_xsl, libxslt, docbook_xml_dtd_45
|
2018-07-17 22:11:16 +02:00
|
|
|
, acl, attr, boost, btrfs-progs, dbus, diffutils, e2fsprogs, libxml2
|
2016-01-20 08:00:06 +01:00
|
|
|
, lvm2, pam, python, utillinux }:
|
2014-09-23 11:46:56 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "snapper";
|
2019-03-28 18:18:25 +01:00
|
|
|
version = "0.8.3";
|
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}";
|
2019-03-28 18:18:25 +01:00
|
|
|
sha256 = "0f3nsqk8820jh08qdh23n01vxbigsfcn9s5qvgqz6jf4pwin6j0x";
|
2014-09-23 11:46:56 +02:00
|
|
|
};
|
|
|
|
|
2016-01-18 19:24:54 +01:00
|
|
|
nativeBuildInputs = [
|
2016-01-19 01:39:34 +01:00
|
|
|
autoreconfHook pkgconfig
|
|
|
|
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
|
2016-01-20 08:00:06 +01:00
|
|
|
lvm2 pam python utillinux
|
2016-01-18 19:24:54 +01:00
|
|
|
];
|
2014-09-23 11:46:56 +02:00
|
|
|
|
2016-01-20 08:00:06 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Hard-coded root paths, hard-coded root paths everywhere...
|
|
|
|
for file in {client,data,pam,scripts}/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"
|
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
|
|
|
|
2016-01-20 08:00:06 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
2016-08-30 01:57:21 +02:00
|
|
|
"-I${libxml2.dev}/include/libxml2"
|
2016-01-20 08:00:06 +01:00
|
|
|
];
|
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
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool for Linux filesystem snapshot management";
|
|
|
|
homepage = http://snapper.io;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2019-02-09 20:49:35 +01:00
|
|
|
maintainers = with maintainers; [ tstrobel markuskowa ];
|
2014-09-23 11:46:56 +02:00
|
|
|
};
|
|
|
|
}
|