about summary refs log tree commit diff
path: root/pkgs/tools/misc/mmake/default.nix
blob: ce8ad76ba829c9cd249a366fa7cc8776d9a2cf6e (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
{ stdenv, buildGoPackage, fetchFromGitHub, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "mmake-${version}";
  version = "1.2.0";

  goPackagePath = "github.com/tj/mmake";

  src = fetchFromGitHub {
    owner = "tj";
    repo = "mmake";
    rev = "v${version}";
    sha256 = "1pyqgk04v0f7a28cwq9c40bd2cgrkrv4wqcijdzpgn4bqhrqab4f";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    homepage = https://github.com/tj/mmake;
    description = "Mmake is a small program which wraps make to provide additional functionality, such as user-friendly help output, remote includes, and eventually more. It otherwise acts as a pass-through to standard make.";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = [ maintainers.gabesoft ];
  };
}