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