567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
25 lines
564 B
Nix
25 lines
564 B
Nix
{
|
|
lib,
|
|
buildFishPlugin,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildFishPlugin {
|
|
pname = "clownfish";
|
|
version = "0-unstable-2021-01-17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "IlanCosman";
|
|
repo = "clownfish";
|
|
rev = "a0db28d8280d05561b8f48c0465480725feeca4c";
|
|
sha256 = "04xvikyrdm6yxh588vbpwvm04fas76pa7sigsaqrip7yh021xxab";
|
|
};
|
|
|
|
meta = {
|
|
description = "Fish function to mock the behaviour of commands";
|
|
homepage = "https://github.com/IlanCosman/clownfish";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ euxane ];
|
|
};
|
|
}
|