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

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

36 lines
902 B
Nix
Raw Normal View History

2022-11-10 06:18:49 +00:00
{ stdenv
, lib
2022-10-05 08:30:50 +00:00
, rustPlatform
, fetchFromGitHub
2022-11-10 06:18:49 +00:00
, CoreServices
2022-10-05 08:30:50 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "cotton";
version = "unstable-2022-10-04";
src = fetchFromGitHub {
owner = "danielhuang";
repo = pname;
rev = "30f3aa7ec6792f3e2dbafc9f4b009b1a6eadc755";
sha256 = "sha256-jq5aW6dViHTxh2btP5smtcyUSZ1EoMrQVN7K8zs1jJM=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"node-semver-2.0.1-alpha.0" = "sha256-TIMynpmRIrnft6kZjX3nJC/BafgudH/d01dpraM5YmU=";
"tokio-tar-0.3.0" = "sha256-mD6bls4rGsJhu/W56C5VYgK4mzcSJ2DPOaPAbRLStT8=";
};
};
2022-10-05 08:30:50 +00:00
2022-11-10 06:18:49 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
2022-10-05 08:30:50 +00:00
meta = with lib; {
description = "A package manager for JavaScript projects";
homepage = "https://github.com/danielhuang/cotton";
license = licenses.gpl3Only;
maintainers = with maintainers; [ dit7ya ];
};
}