summary refs log tree commit diff
path: root/pkgs/tools/misc/tewisay/default.nix
blob: b4f834bdd1af9f327611886523932acdf83e9710 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper }:

buildGoPackage rec {
  pname = "tewisay-unstable";
  version = "2017-04-14";

  goPackagePath = "github.com/lucy/tewisay";

  src = fetchFromGitHub {
    owner = "lucy";
    repo = "tewisay";
    rev = "e3fc38737cedb79d93b8cee07207c6c86db4e488";
    sha256 = "1na3xi4z90v8qydcvd3454ia9jg7qhinciy6kvgyz61q837cw5dk";
  };

  nativeBuildInputs = [ makeWrapper ];

  goDeps = ./deps.nix;

  postInstall = ''
    install -D -t $out/share/tewisay/cows go/src/${goPackagePath}/cows/*.cow
  '';

  preFixup = ''
    wrapProgram $out/bin/tewisay \
      --prefix COWPATH : $out/share/tewisay/cows
  '';

  meta = {
    homepage = "https://github.com/lucy/tewisay";
    description = "Cowsay replacement with unicode and partial ansi escape support";
    license = stdenv.lib.licenses.cc0;
    maintainers = [ stdenv.lib.maintainers.chiiruno ];
    platforms = stdenv.lib.platforms.all;
  };
}