python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / nix / nar-serve / default.nix
blob10ac797578f98e763efde2b50a1909fbf4ce0cee
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
5 buildGoModule rec {
6   pname = "nar-serve";
7   version = "0.6.1";
9   src = fetchFromGitHub {
10     owner = "numtide";
11     repo = "nar-serve";
12     rev = "v${version}";
13     hash = "sha256-cSOYHYJJEGzFtkD4mjTmYBiM9CaWKt64xgV/JeNHpfM=";
14   };
16   vendorSha256 = "sha256-RpjLs4+9abbbysYAlPDUXBLe1cz4Lp+QmR1yv+LpYwQ=";
18   doCheck = false;
20   meta = with lib; {
21     description = "Serve NAR file contents via HTTP";
22     homepage = "https://github.com/numtide/nar-serve";
23     license = licenses.mit;
24     maintainers = with maintainers; [ rizary ];
25   };