nixpkgs/pkgs/tools/misc/snapper/default.nix
2016-01-18 19:32:48 +01:00

55 lines
1.7 KiB
Nix

{ stdenv, fetchFromGitHub
, autoreconfHook, diffutils, pkgconfig, docbook_xsl, libxml2, libxslt, docbook_xml_dtd_45
, acl, attr, boost, btrfs-progs, dbus_libs, pam, utillinux }:
stdenv.mkDerivation rec {
name = "snapper-${ver}";
ver = "0.2.8";
src = fetchFromGitHub {
owner = "openSUSE";
repo = "snapper";
rev = "v${ver}";
sha256 = "1rj8vy6hq140pbnc7mjjb34mfqdgdah1dmlv2073izdgakh7p38j";
};
buildInputs = [
acl attr boost btrfs-progs dbus_libs pam utillinux
];
nativeBuildInputs = [
autoreconfHook diffutils pkgconfig
docbook_xsl libxml2 libxslt docbook_xml_dtd_45
];
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";
'';
configurePhase = ''
./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 ];
};
}