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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "snapraid-${version}";
|
name = "snapraid-${version}";
|
||||||
version = "11.0";
|
version = "11.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/amadvance/snapraid/releases/download/v${version}/snapraid-${version}.tar.gz";
|
owner = "amadvance";
|
||||||
sha256 = "0wapbi8ph7qcyh1jwyrn2r5slzsznlxvg137r4l02xgaaf42p9rh";
|
repo = "snapraid";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "13v0gz22ng09gs87f7900z2sk2hg5543njl32rfn4cxxp0jncs3r";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
buildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.snapraid.it/;
|
homepage = http://www.snapraid.it/;
|
||||||
description = "A backup program for disk arrays";
|
description = "A backup program for disk arrays";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user