2017-12-28 17:56:24 +00:00
|
|
|
{ stdenv, fetchzip }:
|
2017-09-07 21:22:28 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "supervise-${version}";
|
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
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/catern/supervise;
|
|
|
|
description = "A minimal unprivileged process supervisor making use of modern Linux features";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ catern ];
|
|
|
|
};
|
|
|
|
}
|