python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / compression / zsync / default.nix
blobb92112a4816eff7cd70111cbeac3b5579186e3ce
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "zsync";
5   version = "0.6.2";
7   src = fetchurl {
8     url = "http://zsync.moria.org.uk/download/${pname}-${version}.tar.bz2";
9     sha256 = "1wjslvfy76szf0mgg2i9y9q30858xyjn6v2acc24zal76d1m778b";
10   };
12   makeFlags = [ "AR=${stdenv.cc.bintools.targetPrefix}ar" ];
14   meta = with lib; {
15     homepage = "http://zsync.moria.org.uk/";
16     description = "File distribution system using the rsync algorithm";
17     license = licenses.free;
18     maintainers = with maintainers; [ viric ];
19     platforms = with platforms; all;
20   };