about summary refs log tree commit diff
path: root/nixpkgs/pkgs/shells/fish/plugins/clownfish.nix
blob: cd5c997d311427730ce089a5fa7333bef4503c0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildFishPlugin, fetchFromGitHub }:

buildFishPlugin {
  pname = "clownfish";
  version = "unstable-2021-01-17";

  src = fetchFromGitHub {
    owner = "IlanCosman";
    repo = "clownfish";
    rev = "a0db28d8280d05561b8f48c0465480725feeca4c";
    sha256 = "04xvikyrdm6yxh588vbpwvm04fas76pa7sigsaqrip7yh021xxab";
  };

  meta = with lib; {
    description = "Fish function to mock the behaviour of commands";
    homepage = "https://github.com/IlanCosman/clownfish";
    license = licenses.mit;
    maintainers = with maintainers; [ pacien ];
  };
}