Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 531 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6buildFishPlugin rec { 7 pname = "z"; 8 version = "0-unstable-2022-04-08"; 9 10 src = fetchFromGitHub { 11 owner = "jethrokuan"; 12 repo = pname; 13 rev = "85f863f20f24faf675827fb00f3a4e15c7838d76"; 14 sha256 = "sha256-+FUBM7CodtZrYKqU542fQD+ZDGrd2438trKM0tIESs0="; 15 }; 16 17 meta = with lib; { 18 description = "Pure-fish z directory jumping"; 19 homepage = "https://github.com/jethrokuan/z"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ Scrumplex ]; 22 }; 23}