goreman: init at 0.2.1 (#59388)
This commit is contained in:
parent
90727bcab2
commit
54c3ac18d5
23
pkgs/tools/system/goreman/default.nix
Normal file
23
pkgs/tools/system/goreman/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -8896,6 +8896,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
foreman = callPackage ../tools/system/foreman { };
|
foreman = callPackage ../tools/system/foreman { };
|
||||||
|
goreman = callPackage ../tools/system/goreman { };
|
||||||
|
|
||||||
framac = callPackage ../development/tools/analysis/frama-c { };
|
framac = callPackage ../development/tools/analysis/frama-c { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user