goreman: init at 0.2.1 (#59388)

This commit is contained in:
zimbatm 2019-04-13 16:30:05 +02:00 committed by GitHub
parent 90727bcab2
commit 54c3ac18d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "goreman-${version}";
version = "0.2.1";
goPackagePath = "github.com/mattn/goreman";
subPackages = ["."];
src = fetchFromGitHub {
owner = "mattn";
repo = "goreman";
rev = "v${version}";
sha256 = "1h7ip788j7bkygahpp7ylgnrx9jrbhwjzqpjhd1pflmlaxcbflcy";
};
meta = with lib; {
description = "foreman clone written in go language";
homepage = "https://github.com/mattn/goreman";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}

View File

@ -8896,6 +8896,7 @@ in
};
foreman = callPackage ../tools/system/foreman { };
goreman = callPackage ../tools/system/goreman { };
framac = callPackage ../development/tools/analysis/frama-c { };