depot/third_party/nixpkgs/pkgs/by-name/un/undollar/package.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02: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;
};
}