python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / snapraid / default.nix
blob9ce1461ffaeed448447c28f8626d3197136c2daa
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "snapraid";
5   version = "12.2";
7   src = fetchFromGitHub {
8     owner = "amadvance";
9     repo = "snapraid";
10     rev = "v${version}";
11     sha256 = "sha256-3wy442tv3m1CSOAj1cngTWRiqX934c/7V2YL6j30+3U=";
12   };
14   VERSION = version;
16   doCheck = true;
18   nativeBuildInputs = [ autoreconfHook ];
19   buildInputs = [ ];
21   meta = {
22     homepage = "http://www.snapraid.it/";
23     description = "A backup program for disk arrays";
24     license = lib.licenses.gpl3;
25     maintainers = [ lib.maintainers.makefu ];
26     platforms = lib.platforms.unix;
27   };