Skip to content

Commit

Permalink
cargo-clone: init at 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
figsoda committed Oct 12, 2022
1 parent 4b7ae82 commit 538299f
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pkgs/development/tools/rust/cargo-clone/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, stdenv
, Security
, SystemConfiguration
}:

rustPlatform.buildRustPackage rec {
pname = "cargo-clone";
version = "1.1.0";

src = fetchFromGitHub {
owner = "janlikar";
repo = pname;
rev = "v${version}";
sha256 = "1lfg47kw07k4r795n0iixl5cnrb13g74hqlbp8jzbypr255bc16q";
};

cargoSha256 = "sha256-rJcTl5fe3vkNNyLRvm7q5KmzyJXchh1/JuzK0GFhHLk=";

nativeBuildInputs = [ pkg-config ];

buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
Security
SystemConfiguration
];

# requires internet access
doCheck = false;

meta = with lib; {
description = "A cargo subcommand to fetch the source code of a Rust crate";
homepage = "https://github.com/janlikar/cargo-clone";
changelog = "https://github.com/janlikar/cargo-clone/blob/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ figsoda ];
};
}
3 changes: 3 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14744,6 +14744,9 @@ with pkgs;
cargo-c = callPackage ../development/tools/rust/cargo-c {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
};
cargo-clone = callPackage ../development/tools/rust/cargo-clone {
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};
cargo-criterion = callPackage ../development/tools/rust/cargo-criterion { };
cargo-deadlinks = callPackage ../development/tools/rust/cargo-deadlinks {
inherit (darwin.apple_sdk.frameworks) Security;
Expand Down

0 comments on commit 538299f

Please sign in to comment.