about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/backup/rdup/default.nix
blob: 56f9c4f9dafe87bfc9f52d0dfd1250aa5b3d645e (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
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, glib, pcre }:

stdenv.mkDerivation rec {
  pname = "rdup";
  version = "1.1.15";

  src = fetchFromGitHub {
    owner = "miekg";
    repo = "rdup";
    rev = "d66e4320cd0bbcc83253baddafe87f9e0e83caa6";
    sha256 = "0bzyv6qmnivxnv9nw7lnfn46k0m1dlxcjj53zcva6v8y8084l1iw";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];
  buildInputs = [ glib pcre ];

  meta = {
    description = "The only backup program that doesn't make backups";
    homepage    = "https://github.com/miekg/rdup";
    license    = stdenv.lib.licenses.gpl3;
    platforms   = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
  };
}