nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 22 lines 561 B view raw
1{ lib 2, buildFishPlugin 3, fetchFromGitHub 4}: 5buildFishPlugin { 6 pname = "transient-fish"; 7 version = "0-unstable-2024-03-10"; 8 9 src = fetchFromGitHub { 10 owner = "zzhaolei"; 11 repo = "transient.fish"; 12 rev = "be0093f1799462a93953e69896496dee4d063fd6"; 13 hash = "sha256-rEkCimnkxcydKRI2y4DxEM7FD7F2/cGTZJN2Edq/Acc="; 14 }; 15 16 meta = with lib; { 17 description = "Fish plugin to enable a transient prompt"; 18 homepage = "https://github.com/zzhaolei/transient.fish"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ iynaix ]; 21 }; 22}