nixpkgs/pkgs/tools/system/goreman/default.nix

24 lines
560 B
Nix
Raw Normal View History

2019-04-13 14:30:05 +00:00
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "goreman";
2019-04-13 14:30:05 +00:00
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 ];
};
}