nixpkgs-immich/pkgs/tools/misc/h/default.nix

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

29 lines
587 B
Nix
Raw Normal View History

2024-09-17 10:23:40 -06:00
{ lib, stdenv, fetchFromGitHub, ruby }:
stdenv.mkDerivation rec {
pname = "h";
version = "1.1.0";
src = fetchFromGitHub {
owner = "zimbatm";
repo = "h";
rev = "v${version}";
hash = "sha256-4rhol8a+OMX2+MxFPEM1WzM/70C7sye8jw4pg7CujRo=";
};
buildInputs = [ ruby ];
installPhase = ''
mkdir -p $out/bin
cp h $out/bin/h
cp up $out/bin/up
'';
meta = with lib; {
description = "faster shell navigation of projects";
homepage = "https://github.com/zimbatm/h";
license = licenses.mit;
maintainers = [ maintainers.zimbatm ];
};
}