1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

snapraid: 11.0 -> 11.1

build from source, not the release configure scripts already generated
This commit is contained in:
makefu 2017-04-03 10:02:47 +02:00
parent 49aa2483e0
commit 1a0a60482b
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225

View file

@ -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";