nixpkgs/pkgs/development/tools/worker-build/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1004 B
Nix
Raw Normal View History

2022-09-02 09:17:20 +00:00
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
2022-02-12 13:38:15 +00:00
rustPlatform.buildRustPackage rec {
pname = "worker-build";
version = "0.0.18";
2022-02-12 13:38:15 +00:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = "workers-rs";
rev = "v${version}";
2023-08-28 19:12:22 +00:00
hash = "sha256-z6m14IbMzgycwnQpA28e4taokDSVpfZOKIRmFIwLjbg=";
2022-02-12 13:38:15 +00:00
};
cargoLock = {
2023-08-28 09:34:11 +00:00
lockFile = ./Cargo.lock;
outputHashes = {
"postgres-protocol-0.6.5" = "sha256-xLyaappu7ebtKOoHY49dvjDEcuRg8IOv1bNH9RxSUcM=";
};
};
2022-09-02 09:17:20 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2022-02-12 13:38:15 +00:00
buildAndTestSubdir = "worker-build";
# missing some module upstream to run the tests
doCheck = false;
meta = with lib; {
description = "This is a tool to be used as a custom build command for a Cloudflare Workers `workers-rs` project.";
mainProgram = "worker-build";
homepage = "https://github.com/cloudflare/workers-rs";
2022-02-12 13:38:15 +00:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ happysalada ];
};
}