nixpkgs/pkgs/development/tools/trunk/default.nix

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

61 lines
1.4 KiB
Nix
Raw Normal View History

2023-12-14 21:20:18 +00:00
{ lib,
stdenv,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
jq,
moreutils,
CoreServices,
2023-12-18 01:40:00 +00:00
SystemConfiguration
2023-12-14 21:20:18 +00:00
}:
2021-03-18 15:03:26 +00:00
rustPlatform.buildRustPackage rec {
pname = "trunk";
2024-02-09 10:03:30 +00:00
version = "0.18.8";
2021-03-18 15:03:26 +00:00
src = fetchFromGitHub {
owner = "thedodd";
repo = "trunk";
rev = "v${version}";
2024-02-09 10:03:30 +00:00
hash = "sha256-cx14IVqsu1SQezs8T1HFZ75+MPWkvf5RcvGCodW5G4A=";
2021-03-18 15:03:26 +00:00
};
nativeBuildInputs = [ pkg-config ];
2021-05-18 17:27:34 +00:00
buildInputs = if stdenv.isDarwin
2023-12-18 01:40:00 +00:00
then [ CoreServices SystemConfiguration ]
2021-05-18 17:27:34 +00:00
else [ openssl ];
2021-09-14 15:20:18 +00:00
# requires network
checkFlags = [ "--skip=tools::tests::download_and_install_binaries" ];
2024-02-09 10:03:30 +00:00
cargoHash = "sha256-zMkRCNFrfkUvq6oz/7GtaWNw9YS5NygBUYzoOAoQl40=";
2023-12-14 21:20:18 +00:00
# the dependency css-minify contains both README.md and Readme.md,
# which causes a hash mismatch on systems with a case-insensitive filesystem
# this removes the readme files and updates cargo's checksum file accordingly
depsExtraArgs = {
nativeBuildInputs = [
jq
moreutils
];
postBuild = ''
pushd $name/css-minify
rm -f README.md Readme.md
jq 'del(.files."README.md") | del(.files."Readme.md")' \
.cargo-checksum.json -c \
| sponge .cargo-checksum.json
popd
'';
};
2021-03-18 15:03:26 +00:00
meta = with lib; {
homepage = "https://github.com/thedodd/trunk";
description = "Build, bundle & ship your Rust WASM application to the web";
maintainers = with maintainers; [ freezeboy ];
license = with licenses; [ asl20 ];
};
}