Cleanup codebase

This commit is contained in:
2026-02-26 22:53:10 -05:00
parent 6738c7f4a7
commit 73a264f26c
12 changed files with 289 additions and 534 deletions

View File

@@ -1,19 +1,13 @@
{
stdenv,
lib,
fetchurl,
}:
stdenv.mkDerivation rec {
{ stdenv, lib }:
stdenv.mkDerivation {
pname = "cd-fzf";
version = "0.0.1";
executable = ./cd-fzf;
phases = [ "unpackPhase" ]; # Remove all other phases
unpackPhase = ''
mkdir -p $out/bin
cp ${executable} $out/bin/cd-fzf
src = ./.;
installPhase = ''
install -Dm755 cd-fzf $out/bin/cd-fzf
'';
meta = with lib; {
description = "\n Fuzzy find change directory";
platforms = platforms.unix;
meta = {
description = "Fuzzy find change directory";
platforms = lib.platforms.unix;
};
}