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
959 B
Nix
Raw Normal View History

{ comma
2021-12-12 14:15:38 +00:00
, fetchFromGitHub
, fzy
, lib
2022-04-18 23:53:05 +00:00
, makeWrapper
, nix
, nix-index
, rustPlatform
2022-04-26 07:59:57 +00:00
, testers
2021-12-12 14:15:38 +00:00
}:
2022-04-18 23:53:05 +00:00
rustPlatform.buildRustPackage rec {
2021-12-12 14:15:38 +00:00
pname = "comma";
version = "1.4.0";
2021-12-12 14:15:38 +00:00
src = fetchFromGitHub {
owner = "nix-community";
2022-04-18 23:53:05 +00:00
repo = "comma";
rev = "v${version}";
hash = "sha256-EPrXIDi0yO+AVriQgi3t91CLtmYtgmyEfWtFD+wH8As=";
2021-12-12 14:15:38 +00:00
};
cargoHash = "sha256-/1b3GF0flhvejZ3C/yOzRGl50sWR4IxprwRoMUYEvm8=";
2022-04-18 23:53:05 +00:00
nativeBuildInputs = [ makeWrapper ];
2021-12-12 14:15:38 +00:00
2022-04-18 23:53:05 +00:00
postInstall = ''
wrapProgram $out/bin/comma \
--prefix PATH : ${lib.makeBinPath [ nix fzy nix-index ]}
2022-04-18 23:53:05 +00:00
ln -s $out/bin/comma $out/bin/,
2021-12-12 14:15:38 +00:00
'';
2022-04-18 23:53:05 +00:00
passthru.tests = {
2022-04-26 07:59:57 +00:00
version = testers.testVersion { package = comma; };
2022-04-18 23:53:05 +00:00
};
2021-12-12 14:15:38 +00:00
meta = with lib; {
homepage = "https://github.com/nix-community/comma";
2022-04-18 23:53:05 +00:00
description = "Runs programs without installing them";
2021-12-12 14:15:38 +00:00
license = licenses.mit;
2022-04-18 23:53:05 +00:00
maintainers = with maintainers; [ Enzime artturin ];
2021-12-12 14:15:38 +00:00
platforms = platforms.all;
};
}