nixpkgs/pkgs/os-specific/darwin/m-cli/default.nix

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

46 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2018-05-18 14:04:41 +00:00
stdenv.mkDerivation rec {
pname = "m-cli";
2022-03-29 01:52:46 +00:00
version = "0.3.0";
2018-05-18 14:04:41 +00:00
src = fetchFromGitHub {
owner = "rgcr";
2022-03-29 01:52:46 +00:00
repo = pname;
2018-05-18 14:04:41 +00:00
rev = "v${version}";
2022-03-29 01:52:46 +00:00
sha256 = "sha256-KzlE1DdVMLnGmcOS1a2HK4pASofD1EHpdqbzVVIxeb4=";
2018-05-18 14:04:41 +00:00
};
dontBuild = true;
installPhase = ''
local MPATH="$out/share/m"
gawk -i inplace '{
gsub(/^\[ -L.*|^\s+\|\| pushd.*|^popd.*/, "");
gsub(/MPATH=.*/, "MPATH='$MPATH'");
gsub(/(update|uninstall)_mcli \&\&.*/, "echo NOOP \\&\\& exit 0");
print
}' m
install -Dt "$MPATH/plugins" -m755 plugins/*
install -Dm755 m $out/bin/m
install -Dt "$out/share/bash-completion/completions/" -m444 completion/bash/m
install -Dt "$out/share/fish/vendor_completions.d/" -m444 completion/fish/m.fish
install -Dt "$out/share/zsh/site-functions/" -m444 completion/zsh/_m
'';
meta = with lib; {
2018-05-18 14:04:41 +00:00
description = "Swiss Army Knife for macOS";
inherit (src.meta) homepage;
license = licenses.mit;
platforms = platforms.darwin;
2021-03-11 02:56:05 +00:00
maintainers = with maintainers; [];
2022-03-29 01:52:46 +00:00
mainProgram = "m";
2018-05-18 14:04:41 +00:00
};
}