nixpkgs/pkgs/tools/misc/snapper/default.nix

69 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2021-01-17 03:51:22 +00:00
, autoreconfHook, pkg-config, docbook_xsl, libxslt, docbook_xml_dtd_45
, acl, attr, boost, btrfs-progs, dbus, diffutils, e2fsprogs, libxml2
2021-04-22 12:36:53 +00:00
, lvm2, pam, python, util-linux, json_c, nixosTests
2020-12-31 11:33:07 +00:00
, ncurses }:
stdenv.mkDerivation rec {
pname = "snapper";
2021-04-22 12:36:53 +00:00
version = "0.9.0";
2016-01-18 15:16:29 +00:00
src = fetchFromGitHub {
owner = "openSUSE";
repo = "snapper";
rev = "v${version}";
2021-04-22 12:36:53 +00:00
sha256 = "1gx3ichbkdqlzl7w187vc3xpmr9prmnp7as0h6ympgigradj5c7g";
};
2016-01-18 18:24:54 +00:00
nativeBuildInputs = [
2021-01-17 03:51:22 +00:00
autoreconfHook pkg-config
docbook_xsl libxslt docbook_xml_dtd_45
];
buildInputs = [
acl attr boost btrfs-progs dbus diffutils e2fsprogs libxml2
2020-12-31 11:33:07 +00:00
lvm2 pam python util-linux json_c ncurses
2016-01-18 18:24:54 +00:00
];
passthru.tests.snapper = nixosTests.snapper;
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
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;
2019-10-30 11:34:47 +00:00
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";
2021-02-01 12:49:37 +00:00
license = licenses.gpl2Only;
platforms = platforms.linux;
2019-02-09 19:49:35 +00:00
maintainers = with maintainers; [ tstrobel markuskowa ];
};
}