mmake: init at 1.2.0 (#28904)

* Package for mmake

* Package for mmake - build from sources

* Package name update

* Added maintainers
This commit is contained in:
Gabriel Adomnicai
2017-09-05 15:00:22 +01:00
committed by Jörg Thalheim
parent 62c4d15269
commit 7c08e86be9
4 changed files with 58 additions and 0 deletions
+25
View File
@@ -0,0 +1,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 ];
};
}