1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5}:
6
7buildFishPlugin {
8 pname = "clownfish";
9 version = "0-unstable-2021-01-17";
10
11 src = fetchFromGitHub {
12 owner = "IlanCosman";
13 repo = "clownfish";
14 rev = "a0db28d8280d05561b8f48c0465480725feeca4c";
15 sha256 = "04xvikyrdm6yxh588vbpwvm04fas76pa7sigsaqrip7yh021xxab";
16 };
17
18 meta = with lib; {
19 description = "Fish function to mock the behaviour of commands";
20 homepage = "https://github.com/IlanCosman/clownfish";
21 license = licenses.mit;
22 maintainers = with maintainers; [ euxane ];
23 };
24}