3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/package-management/comma/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
963 B
Nix
Raw Normal View History

{ comma
2021-12-12 14:15:38 +00:00
, fetchFromGitHub
, fzy
, lib
2022-04-19 00:53:05 +01:00
, makeWrapper
, nix
, nix-index
, rustPlatform
2022-04-26 08:59:57 +01:00
, testers
2021-12-12 14:15:38 +00:00
}:
2022-04-19 00:53:05 +01:00
rustPlatform.buildRustPackage rec {
2021-12-12 14:15:38 +00:00
pname = "comma";
2022-04-19 00:53:05 +01:00
version = "1.2.3";
2021-12-12 14:15:38 +00:00
src = fetchFromGitHub {
owner = "nix-community";
2022-04-19 00:53:05 +01:00
repo = "comma";
rev = "v${version}";
sha256 = "sha256-emhvBaicLAnu/Kn4oxHngGa5BSxOEwbkhTLO5XvauMw=";
2021-12-12 14:15:38 +00:00
};
2022-04-19 00:53:05 +01:00
cargoSha256 = "sha256-mQxNo4VjW2Q0MYfU+RCb4Ayl9ClpxrSV8X4EKZ7PewA=";
nativeBuildInputs = [ makeWrapper ];
2021-12-12 14:15:38 +00:00
2022-04-19 00:53:05 +01:00
postInstall = ''
wrapProgram $out/bin/comma \
--prefix PATH : ${lib.makeBinPath [ nix fzy nix-index ]}
2022-04-19 00:53:05 +01:00
ln -s $out/bin/comma $out/bin/,
2021-12-12 14:15:38 +00:00
'';
2022-04-19 00:53:05 +01:00
passthru.tests = {
2022-04-26 08:59:57 +01:00
version = testers.testVersion { package = comma; };
2022-04-19 00:53:05 +01:00
};
2021-12-12 14:15:38 +00:00
meta = with lib; {
homepage = "https://github.com/nix-community/comma";
2022-04-19 00:53:05 +01:00
description = "Runs programs without installing them";
2021-12-12 14:15:38 +00:00
license = licenses.mit;
2022-04-19 00:53:05 +01:00
maintainers = with maintainers; [ Enzime artturin ];
2021-12-12 14:15:38 +00:00
platforms = platforms.all;
};
}