depot/pkgs/by-name/un/undollar/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

37 lines
915 B
Nix

{
lib,
fetchFromGitHub,
stdenvNoCC,
nodejs
}:
stdenvNoCC.mkDerivation {
pname = "undollar";
version = "1.0.0-unstable-2018-09-14";
src = fetchFromGitHub {
owner = "xtyrrell";
repo = "undollar";
# Upstream has no tagged version
rev = "27e5f0f87ddc4c9b58fe02a68e83a601078ebb43";
hash = "sha256-2nudiUh8B5tSg3TeKh1FEJaf8MJ18/IkYikFD07c4Pw=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv undollar.js $out/bin/$
substituteInPlace $out/bin/$ \
--replace-fail "/usr/bin/env node" "${lib.getExe nodejs}"
runHook postInstall
'';
meta = {
description = "eats the dollar sign in the command you just pasted into your terminal";
mainProgram = "$";
homepage = "https://github.com/xtyrrell/undollar";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pyrox0 ];
inherit (nodejs.meta) platforms;
};
}