mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "m-cli";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rgcr";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KzlE1DdVMLnGmcOS1a2HK4pASofD1EHpdqbzVVIxeb4=";
|
|
};
|
|
|
|
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;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.darwin;
|
|
maintainers = [ ];
|
|
mainProgram = "m";
|
|
};
|
|
}
|