nixpkgs/pkgs/tools/filesystems/snapraid/default.nix

29 lines
628 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2015-11-13 13:35:48 +00:00
stdenv.mkDerivation rec {
pname = "snapraid";
2020-05-28 10:36:15 +00:00
version = "11.5";
2015-11-13 13:35:48 +00:00
src = fetchFromGitHub {
owner = "amadvance";
repo = "snapraid";
rev = "v${version}";
2020-05-28 10:36:15 +00:00
sha256 = "0dlhdsmq5l208zldfr9z9g0p67wry81dr0r23lpybb5c9fm2f2rm";
2015-11-13 13:35:48 +00:00
};
2018-02-21 12:17:25 +00:00
VERSION = version;
doCheck = true;
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ];
2015-11-13 13:35:48 +00:00
meta = {
homepage = "http://www.snapraid.it/";
2015-11-13 13:35:48 +00:00
description = "A backup program for disk arrays";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.makefu ];
platforms = lib.platforms.unix;
2015-11-13 13:35:48 +00:00
};
}