summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/go-mk/default.nix
blob: 2fff2f67edbf238937c763e5388c9cf922ce13e1 (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
{ lib
, buildGoPackage
, fetchFromGitHub
}:

buildGoPackage rec {
  pname = "go-mk";
  version = "0.pre+date=2015-03-24";

  src = fetchFromGitHub {
    owner = "dcjones";
    repo = "mk";
    rev = "73d1b31466c16d0a13a220e5fad7cd8ef6d984d1";
    hash = "sha256-fk2Qd3LDMx+RapKi1M9yCuxpS0IB6xlbEWW+H6t94AI=";
  };

  goPackagePath = "github.com/dcjones/mk";

  meta = with lib; {
    inherit (src.meta) homepage;
    description = "A reboot of Plan9's mk, written in Go";
    longDescription = ''
      Mk is a reboot of the Plan 9 mk command, which itself is a successor to
      make. This tool is for anyone who loves make, but hates all its stupid
      bullshit.
    '';
    license = licenses.bsd2;
    maintainers = with maintainers; [ AndersonTorres ];
    mainProgram = "mk";
    platforms = platforms.unix;
  };
}