Add package: snapper

Snapper is a tool for Linux filesystem snapshot management, developed for OpenSuSE.
wip/yesman
Thomas Strobel 10 years ago
parent 7fefb6f5c3
commit 1cd703f3a9
  1. 52
      pkgs/tools/misc/snapper/default.nix
  2. 3
      pkgs/top-level/all-packages.nix

@ -0,0 +1,52 @@
{ stdenv, fetchgit, autoconf, automake, boost, pkgconfig, libtool, acl, libxml2, btrfsProgs, dbus_libs, docbook_xsl, libxslt, docbook_xml_dtd_45, diffutils, pam, utillinux, attr, gettext }:
stdenv.mkDerivation rec {
name = "snapper-0.2.4";
src = fetchgit {
url = "https://github.com/openSUSE/snapper";
rev = "24e18153f7a32d0185dcfb20f8b8a4709ba8fe4a";
sha256 = "ec4b829430bd7181995e66a26ac86e8ac71c27e77faf8eb06db71d645c6f859b";
};
buildInputs = [ autoconf automake boost pkgconfig libtool acl libxml2 btrfsProgs dbus_libs docbook_xsl libxslt docbook_xml_dtd_45 diffutils pam utillinux attr gettext ];
patchPhase = ''
# work around missing btrfs/version.h; otherwise, use "-DHAVE_BTRFS_VERSION_H"
substituteInPlace snapper/Btrfs.cc --replace "define BTRFS_LIB_VERSION (100)" "define BTRFS_LIB_VERSION (200)";
# fix strange SuSE boost naming
substituteInPlace snapper/Makefile.am --replace \
"libsnapper_la_LIBADD = -lboost_thread-mt -lboost_system-mt -lxml2 -lacl -lz -lm" \
"libsnapper_la_LIBADD = -lboost_thread -lboost_system -lxml2 -lacl -lz -lm";
# general cleanup
sed -i 's/^INCLUDES/AM_CPPFLAGS/' $(grep -rl ^INCLUDES .|grep "\.am$")
'';
configurePhase = ''
aclocal
libtoolize --force --automake --copy
autoheader
automake --add-missing --copy
autoconf
./configure --disable-silent-rules --disable-ext4 --disable-btrfs-quota --prefix=$out
'';
makeFlags = "DESTDIR=$(out)";
NIX_CFLAGS_COMPILE = [ "-I${libxml2}/include/libxml2" ];
# Probably a hack, but using DESTDIR and PREFIX makes everything work!
postInstall = ''
cp -r $out/$out/* $out
rm -r $out/nix
'';
meta = with stdenv.lib; {
description = "Tool for Linux filesystem snapshot management";
homepage = http://snapper.io;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.tstrobel ];
};
}

@ -10077,6 +10077,9 @@ let
smartdeblur = callPackage ../applications/graphics/smartdeblur { };
# TODO: boost is just fixed as boost156 is split into out and lib, and I don't know how to access lib
snapper = callPackage ../tools/misc/snapper { boost=boost149; };
snd = callPackage ../applications/audio/snd { };
shntool = callPackage ../applications/audio/shntool { };

Loading…
Cancel
Save