mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
25 lines
646 B
Nix
25 lines
646 B
Nix
{ 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 ];
|
|
};
|
|
}
|