Merge pull request #75883 from filalex77/neo-cowsay-1.0.0
neo-cowsay: init at 1.0.0
This commit is contained in:
commit
a3579637bc
24
pkgs/tools/misc/neo-cowsay/default.nix
Normal file
24
pkgs/tools/misc/neo-cowsay/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "neo-cowsay";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Code-Hex";
|
||||||
|
repo = "Neo-cowsay";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1in6kadczv05v62qhskqbdx7wppch0gwl0bshr5ihmi39k8l7v3z";
|
||||||
|
};
|
||||||
|
|
||||||
|
modSha256 = "063ds35dzv8m4bjk7v1q3f6jwyp7j5jrkrhrl41z1c1mbzzkagkq";
|
||||||
|
|
||||||
|
subPackages = [ "cmd/cowsay" "cmd/cowthink" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Cowsay reborn, written in Go";
|
||||||
|
homepage = "https://github.com/Code-Hex/Neo-cowsay";
|
||||||
|
license = with licenses; [artistic1 /* or */ gpl3];
|
||||||
|
maintainers = with maintainers; [ filalex77 ];
|
||||||
|
};
|
||||||
|
}
|
@ -5127,6 +5127,8 @@ in
|
|||||||
|
|
||||||
nemiver = callPackage ../development/tools/nemiver { };
|
nemiver = callPackage ../development/tools/nemiver { };
|
||||||
|
|
||||||
|
neo-cowsay = callPackage ../tools/misc/neo-cowsay { };
|
||||||
|
|
||||||
neofetch = callPackage ../tools/misc/neofetch { };
|
neofetch = callPackage ../tools/misc/neofetch { };
|
||||||
|
|
||||||
nerdfonts = callPackage ../data/fonts/nerdfonts { };
|
nerdfonts = callPackage ../data/fonts/nerdfonts { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user