neo-cowsay: init at 1.0.0

This commit is contained in:
Oleksii Filonenko 2019-12-18 18:50:10 +02:00
parent a5e98ed7cf
commit 05fd02d235
No known key found for this signature in database
GPG key ID: F3510FE5691629A1
2 changed files with 26 additions and 0 deletions

View 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 ];
};
}

View file

@ -5102,6 +5102,8 @@ in
nemiver = callPackage ../development/tools/nemiver { };
neo-cowsay = callPackage ../tools/misc/neo-cowsay { };
neofetch = callPackage ../tools/misc/neofetch { };
nerdfonts = callPackage ../data/fonts/nerdfonts { };