2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2017-09-07 21:22:28 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "supervise";
|
2018-02-20 19:04:18 +00:00
|
|
|
version = "1.4.0";
|
2017-09-07 21:22:28 +01:00
|
|
|
|
2017-12-28 17:56:24 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/catern/supervise/releases/download/v${version}/supervise-${version}.tar.gz";
|
2018-02-20 19:04:18 +00:00
|
|
|
sha256 = "0jk6q2f67pfs18ah040lmsbvbrnjap7w04jjddsfn1j5bcrvs13x";
|
2017-09-07 21:22:28 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/catern/supervise";
|
2017-09-07 21:22:28 +01:00
|
|
|
description = "A minimal unprivileged process supervisor making use of modern Linux features";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ catern ];
|
2017-09-07 21:22:28 +01:00
|
|
|
};
|
|
|
|
}
|