nixpkgs/pkgs/tools/misc/snapper/default.nix
Thomas Strobel 1cd703f3a9 Add package: snapper
Snapper is a tool for Linux filesystem snapshot management, developed for OpenSuSE.
2014-09-23 11:46:56 +02:00

53 lines
1.9 KiB
Nix

{ 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 ];
};
}