2017-10-18 02:11:47 +02:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch
|
2016-01-19 01:39:34 +01:00
|
|
|
, autoreconfHook, pkgconfig, docbook_xsl, libxslt, docbook_xml_dtd_45
|
|
|
|
, acl, attr, boost, btrfs-progs, dbus_libs, 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 {
|
2016-01-20 08:00:06 +01:00
|
|
|
name = "snapper-${version}";
|
2017-09-21 00:41:04 +02:00
|
|
|
version = "0.5.0";
|
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}";
|
2017-09-21 00:41:04 +02:00
|
|
|
sha256 = "14hrv23film4iihyclcvc2r2dgxl8w3as50r81xjjc85iyp6yxkm";
|
2014-09-23 11:46:56 +02:00
|
|
|
};
|
|
|
|
|
2017-10-18 02:11:47 +02:00
|
|
|
patches = [
|
|
|
|
# Fix build with new Boost
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/openSUSE/snapper/commit/2e3812d2c1d1f54861fb79f5c2b0197de96a00a3.patch";
|
|
|
|
sha256 = "0yrzss1v7lmcvkajmchz917yqsvlsdfz871szzw790v6pql1322s";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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 = [
|
|
|
|
acl attr boost btrfs-progs dbus_libs 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;
|
2018-01-16 22:59:13 +01:00
|
|
|
maintainers = with maintainers; [ tstrobel ];
|
2014-09-23 11:46:56 +02:00
|
|
|
};
|
|
|
|
}
|