about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/goreman/default.nix
blob: d58d19fd6ed12f3ec4a5a25b8a8de6827c725d95 (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
{ 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 ];
  };
}