cotton: unstable-2022-10-04 -> unstable-2023-04-13, add figsoda as a maintainer

Diff: 30f3aa7ec6...e6aeb0757a
This commit is contained in:
figsoda 2023-04-16 00:26:40 -04:00
parent dd8117df89
commit 61bde15dd7
2 changed files with 647 additions and 262 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,25 +1,25 @@
{ stdenv { lib
, lib
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, stdenv
, CoreServices , CoreServices
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cotton"; pname = "cotton";
version = "unstable-2022-10-04"; version = "unstable-2023-04-13";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "danielhuang"; owner = "danielhuang";
repo = pname; repo = pname;
rev = "30f3aa7ec6792f3e2dbafc9f4b009b1a6eadc755"; rev = "e6aeb0757a2579de82e75e1d2e9fc20739f0ab7f";
sha256 = "sha256-jq5aW6dViHTxh2btP5smtcyUSZ1EoMrQVN7K8zs1jJM="; sha256 = "sha256-DpwwTVlmmYxbZiJ9HAwQfomg7+WH3I3y3jZdaVbBf4w=";
}; };
cargoLock = { cargoLock = {
lockFile = ./Cargo.lock; lockFile = ./Cargo.lock;
outputHashes = { outputHashes = {
"node-semver-2.0.1-alpha.0" = "sha256-TIMynpmRIrnft6kZjX3nJC/BafgudH/d01dpraM5YmU="; "node-semver-2.0.1-alpha.0" = "sha256-ldRQuJGo8gGc4fBD8E/J1aPJcwG7lg7jhwRvl/P2BbM=";
"tokio-tar-0.3.0" = "sha256-mD6bls4rGsJhu/W56C5VYgK4mzcSJ2DPOaPAbRLStT8="; "tokio-tar-0.3.0" = "sha256-mD6bls4rGsJhu/W56C5VYgK4mzcSJ2DPOaPAbRLStT8=";
}; };
}; };
@ -30,6 +30,6 @@ rustPlatform.buildRustPackage rec {
description = "A package manager for JavaScript projects"; description = "A package manager for JavaScript projects";
homepage = "https://github.com/danielhuang/cotton"; homepage = "https://github.com/danielhuang/cotton";
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = with maintainers; [ dit7ya ]; maintainers = with maintainers; [ dit7ya figsoda ];
}; };
} }