summary refs log tree commit diff
path: root/pkgs/development/tools/rust/cargo-temp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/rust/cargo-temp/default.nix')
-rw-r--r--pkgs/development/tools/rust/cargo-temp/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/rust/cargo-temp/default.nix b/pkgs/development/tools/rust/cargo-temp/default.nix
new file mode 100644
index 0000000000000..4956ce52333d1
--- /dev/null
+++ b/pkgs/development/tools/rust/cargo-temp/default.nix
@@ -0,0 +1,22 @@
+{ lib, rustPlatform, fetchFromGitHub }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "cargo-temp";
+  version = "0.2.13";
+
+  src = fetchFromGitHub {
+    owner = "yozhgoor";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0g9ddzvgrb45ddflbcwpq320zwj4qrxfs07dydy6r86whdn1mlc0";
+  };
+
+  cargoSha256 = "sha256-5E1Fkipqb2nONQNAuj9xKn8k2PhH9IZ48UosNlPpP6c=";
+
+  meta = with lib; {
+    description = "A CLI tool that allow you to create a temporary new Rust project using cargo with already installed dependencies";
+    homepage = "https://github.com/yozhgoor/cargo-temp";
+    license = with licenses; [ mit /* or */ asl20 ];
+    maintainers = with maintainers; [ figsoda ];
+  };
+}