nixpkgs/pkgs/tools/backup/btar/default.nix

22 lines
584 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, librsync }:
stdenv.mkDerivation rec {
2012-07-30 17:25:08 +00:00
name = "btar-1.1.1";
src = fetchurl {
url = "http://vicerveza.homeunix.net/~viric/soft/btar/${name}.tar.gz";
2012-07-30 17:25:08 +00:00
sha256 = "0miklk4bqblpyzh1bni4x6lqn88fa8fjn15x1k1n8bxkx60nlymd";
};
buildInputs = [ librsync ];
installPhase = "make install PREFIX=$out";
meta = {
description = "Tar-compatible block-based archiver";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl3Plus;
homepage = "http://viric.name/cgi-bin/btar";
2021-01-15 09:19:50 +00:00
platforms = with lib.platforms; all;
maintainers = with lib.maintainers; [viric];
};
}