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

29 lines
644 B
Nix
Raw Normal View History

{ 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";
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.makefu ];
platforms = stdenv.lib.platforms.unix;
2015-11-13 13:35:48 +00:00
};
}