mirror of
https://github.com/davegallant/nix-config
synced 2026-03-03 12:46:34 +00:00
14 lines
264 B
Nix
14 lines
264 B
Nix
{ stdenv, lib }:
|
|
stdenv.mkDerivation {
|
|
pname = "cd-fzf";
|
|
version = "0.0.1";
|
|
src = ./.;
|
|
installPhase = ''
|
|
install -Dm755 cd-fzf $out/bin/cd-fzf
|
|
'';
|
|
meta = {
|
|
description = "Fuzzy find change directory";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|