summary refs log tree commit diff
path: root/pkgs/tools/backup/btar/default.nix
blob: c77aa5b82b62a4b3e68628c0d89fcf00b733d9fa (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
{ lib, stdenv, fetchurl, fetchpatch, librsync }:

stdenv.mkDerivation rec {
  pname = "btar";
  version = "1.1.1";

  src = fetchurl {
    url = "https://vicerveza.homeunix.net/~viric/soft/btar/btar-${version}.tar.gz";
    sha256 = "0miklk4bqblpyzh1bni4x6lqn88fa8fjn15x1k1n8bxkx60nlymd";
  };

  patches = [
    (fetchpatch {
      url = "https://build.opensuse.org/public/source/openSUSE:Factory/btar/btar-librsync.patch?rev=2";
      sha256 = "1awqny9489vsfffav19s73xxg26m7zrhvsgf1wxb8c2izazwr785";
    })
  ];

  buildInputs = [ librsync ];

  makeFlags = [ "PREFIX=$(out)" ];

  meta = with lib; {
    description = "Tar-compatible block-based archiver";
    license = lib.licenses.gpl3Plus;
    homepage = "https://viric.name/cgi-bin/btar";
    platforms = platforms.all;
    maintainers = with maintainers; [ viric ];
  };
}