tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
btar: clean up
Alyssa Ross
4 years ago
7368fa12
0271807d
+9
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
backup
btar
default.nix
+9
-7
pkgs/tools/backup/btar/default.nix
···
1
{ lib, stdenv, fetchurl, fetchpatch, librsync }:
2
3
stdenv.mkDerivation rec {
4
-
name = "btar-1.1.1";
0
0
5
src = fetchurl {
6
-
url = "http://vicerveza.homeunix.net/~viric/soft/btar/${name}.tar.gz";
7
sha256 = "0miklk4bqblpyzh1bni4x6lqn88fa8fjn15x1k1n8bxkx60nlymd";
8
};
9
···
16
17
buildInputs = [ librsync ];
18
19
-
installPhase = "make install PREFIX=$out";
20
21
-
meta = {
22
description = "Tar-compatible block-based archiver";
23
license = lib.licenses.gpl3Plus;
24
-
homepage = "http://viric.name/cgi-bin/btar";
25
-
platforms = with lib.platforms; all;
26
-
maintainers = with lib.maintainers; [viric];
27
};
28
}
···
1
{ lib, stdenv, fetchurl, fetchpatch, librsync }:
2
3
stdenv.mkDerivation rec {
4
+
pname = "btar";
5
+
version = "1.1.1";
6
+
7
src = fetchurl {
8
+
url = "https://vicerveza.homeunix.net/~viric/soft/btar/btar-${version}.tar.gz";
9
sha256 = "0miklk4bqblpyzh1bni4x6lqn88fa8fjn15x1k1n8bxkx60nlymd";
10
};
11
···
18
19
buildInputs = [ librsync ];
20
21
+
makeFlags = [ "PREFIX=$(out)" ];
22
23
+
meta = with lib; {
24
description = "Tar-compatible block-based archiver";
25
license = lib.licenses.gpl3Plus;
26
+
homepage = "https://viric.name/cgi-bin/btar";
27
+
platforms = platforms.all;
28
+
maintainers = with maintainers; [ viric ];
29
};
30
}