cargo-edit: init at 0.1.6
This commit is contained in:
parent
7df8e53d28
commit
209e8e53fb
27
pkgs/tools/package-management/cargo-edit/default.nix
Normal file
27
pkgs/tools/package-management/cargo-edit/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper, zlib, openssl }:
|
||||||
|
|
||||||
|
with rustPlatform;
|
||||||
|
|
||||||
|
buildRustPackage rec {
|
||||||
|
name = "cargo-edit-${version}";
|
||||||
|
version = "0.1.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "killercup";
|
||||||
|
repo = "cargo-edit";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "16wvix2zkpzl1hhlsvd6mkps8fw5k4n2dvjk9m10gg27pixmiync";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ zlib openssl ];
|
||||||
|
|
||||||
|
depsSha256 = "1v7ir56j6biximnnhyvadd98azcj3i5hc8aky0am2nf0swq0jimq";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A utility for managing cargo dependencies from the command line";
|
||||||
|
homepage = https://github.com/killercup/cargo-edit;
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ jb55 ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -5582,6 +5582,8 @@ with pkgs;
|
|||||||
cargo = rust.cargo;
|
cargo = rust.cargo;
|
||||||
rustc = rust.rustc;
|
rustc = rust.rustc;
|
||||||
|
|
||||||
|
cargo-edit = callPackage ../tools/package-management/cargo-edit { };
|
||||||
|
|
||||||
rustPlatform = recurseIntoAttrs (makeRustPlatform rust);
|
rustPlatform = recurseIntoAttrs (makeRustPlatform rust);
|
||||||
|
|
||||||
makeRustPlatform = rust: lib.fix (self:
|
makeRustPlatform = rust: lib.fix (self:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user