about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/package-management/comma
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/package-management/comma')
-rw-r--r--nixpkgs/pkgs/tools/package-management/comma/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/package-management/comma/default.nix b/nixpkgs/pkgs/tools/package-management/comma/default.nix
new file mode 100644
index 000000000000..b73e64924a6d
--- /dev/null
+++ b/nixpkgs/pkgs/tools/package-management/comma/default.nix
@@ -0,0 +1,43 @@
+{ comma
+, fetchFromGitHub
+, fzy
+, lib
+, makeBinaryWrapper
+, nix-index-unwrapped
+, rustPlatform
+, testers
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "comma";
+  version = "1.7.1";
+
+  src = fetchFromGitHub {
+    owner = "nix-community";
+    repo = "comma";
+    rev = "v${version}";
+    hash = "sha256-x2HVm2vcEFHDrCQLIp5QzNsDARcbBfPdaIMLWVNfi4c=";
+  };
+
+  cargoHash = "sha256-N6Bc0+m0Qz1c/80oLvQTj8gvMusPXIriegNlRYWWStU=";
+
+  nativeBuildInputs = [ makeBinaryWrapper ];
+
+  postInstall = ''
+    wrapProgram $out/bin/comma \
+      --prefix PATH : ${lib.makeBinPath [ fzy nix-index-unwrapped ]}
+    ln -s $out/bin/comma $out/bin/,
+  '';
+
+  passthru.tests = {
+    version = testers.testVersion { package = comma; };
+  };
+
+  meta = with lib; {
+    homepage = "https://github.com/nix-community/comma";
+    description = "Runs programs without installing them";
+    license = licenses.mit;
+    mainProgram = "comma";
+    maintainers = with maintainers; [ Enzime artturin marsam ];
+  };
+}