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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
627 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";
2022-01-25 20:28:29 +00:00
version = "12.1";
2015-11-13 13:35:48 +00:00
src = fetchFromGitHub {
owner = "amadvance";
repo = "snapraid";
rev = "v${version}";
2022-01-25 20:28:29 +00:00
sha256 = "sha256-DaFL5YxKdL7swfiWAHNufkeQ7mNd/MdZ6E0yAtC58lc=";
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
};
}