summary refs log blame commit diff
path: root/pkgs/tools/backup/burp/default.nix
blob: 5c0be4a2de7d03910289a7d3b3b32ec00d98dd90 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                    
                                                  

                         
                 
                     
 



                         
                                                                    

    
                                                   
                                                        

                                                  


                                              


                                                      
                                        




                                                
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, acl, librsync, ncurses, openssl, zlib, uthash }:

stdenv.mkDerivation rec {
  pname = "burp";
  version = "2.2.18";

  src = fetchFromGitHub {
    owner = "grke";
    repo = "burp";
    rev = version;
    sha256 = "1zhq240kz881vs2s620qp0kifmgr582caalm85ls789w9rmdkhjl";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];
  buildInputs = [ librsync ncurses openssl zlib uthash ]
    ++ stdenv.lib.optional (!stdenv.isDarwin) acl;

  configureFlags = [ "--localstatedir=/var" ];

  installFlags = [ "localstatedir=/tmp" ];

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