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