python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / pax-rs / default.nix
blob1731dabf370473a98949154bb37f1f7ccf9772bf
1 { lib, fetchFromGitHub, fetchurl, rustPlatform, runCommand } :
2 with rustPlatform;
4 buildRustPackage rec {
5   pname = "pax-rs";
6   version = "0.4.0";
8   meta = with lib; {
9     description = "The fastest JavaScript bundler in the galaxy";
10     longDescription = ''
11       The fastest JavaScript bundler in the galaxy. Fully supports ECMAScript module syntax (import/export) in addition to CommonJS require(<string>).
12     '';
13     homepage = "https://github.com/nathan/pax";
14     license = licenses.mit;
15     maintainers = [ maintainers.klntsky ];
16     platforms = platforms.linux;
17     mainProgram = "px";
18   };
20   src =
21     let
22       source = fetchFromGitHub {
23         owner = "nathan";
24         repo = "pax";
25         rev = "pax-v${version}";
26         sha256 = "1l2xpgsms0bfc0i3l0hyw4dbp6d4qdxa9vxyp704p27vvn4ndhv2";
27       };
29       cargo-lock = fetchurl {
30         url = "https://gist.github.com/klntsky/c7863424d7df0c379782015f6bb3b399/raw/1cf7481e33984fd1510dc77ed677606d08fa8eb6/Cargo.lock";
31         sha256 = "0ff1b64b99cbca1cc2ceabcd2e4f7bc3411e3a2a9fbb9db2204d9240fe38ddeb";
32       };
33     in
34     runCommand "pax-rs-src" {} ''
35       cp -R ${source} $out
36       chmod +w $out
37       cp ${cargo-lock} $out/Cargo.lock
38     '';
40   cargoSha256 = "0d6g52hjflnw2zvlx10pz78527vh7mw5n43yi8q6dwr3pkbds1fs";