mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
snapraid: 11.0 -> 11.1
build from source, not the release configure scripts already generated
This commit is contained in:
parent
49aa2483e0
commit
1a0a60482b
@ -1,16 +1,20 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "snapraid-${version}";
|
||||
version = "11.0";
|
||||
version = "11.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/amadvance/snapraid/releases/download/v${version}/snapraid-${version}.tar.gz";
|
||||
sha256 = "0wapbi8ph7qcyh1jwyrn2r5slzsznlxvg137r4l02xgaaf42p9rh";
|
||||
src = fetchFromGitHub {
|
||||
owner = "amadvance";
|
||||
repo = "snapraid";
|
||||
rev = "v${version}";
|
||||
sha256 = "13v0gz22ng09gs87f7900z2sk2hg5543njl32rfn4cxxp0jncs3r";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
buildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.snapraid.it/;
|
||||
description = "A backup program for disk arrays";
|
||||
|
Loading…
Reference in New Issue
Block a user