summary refs log tree commit diff
path: root/pkgs/tools/backup/burp/default.nix
blob: 5dea4eba48959b7fd37e63d758e4cad21c412f9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchgit, acl, librsync, ncurses, openssl, zlib }:

stdenv.mkDerivation rec {
  name = "burp-1.4.40";

  src = fetchgit {
    url = "https://github.com/grke/burp.git";
    rev = "1e8eebac420f2b0dc29102602b7e5e437d58d5b7";
    sha256 = "201fe6daf598543eaf3c8cf3495812b3a65695c6841f555410aaaab1098b8f03";
  };

  patches = [ ./burp_1.4.40.patch ];

  buildInputs = [ librsync ncurses openssl zlib ]
    # next two lines copied from bacula, as burp needs acl as well
    # acl relies on attr, which I can't get to build on darwin
    ++ stdenv.lib.optional (!stdenv.isDarwin) acl;

  configureFlags = [
    "--sbindir=$out/bin"
  ];

  meta = with stdenv.lib; {
    description = "BURP - BackUp and Restore Program";
    homepage    = http://burp.grke.org;
    license     = licenses.agpl3;
    maintainers = with maintainers; [ tokudan ];
    platforms   = platforms.all;
  };
}