4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "m-cli";
|
|
version = "0.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rgcr";
|
|
repo = "m-cli";
|
|
rev = "v${version}";
|
|
sha512 = "0mkcx7jq91pbfs8327qc8434gj73fvjgdfdsrza0lyd9wns6jhsqsf0585klzl68aqscvksgzi2asdnim4va35cdkp2fdzl0g3sm4kd";
|
|
};
|
|
|
|
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; {
|
|
description = "Swiss Army Knife for macOS";
|
|
inherit (src.meta) homepage;
|
|
repositories.git = "git://github.com/rgcr/m-cli.git";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.darwin;
|
|
maintainers = with maintainers; [ yurrriq ];
|
|
};
|
|
}
|