2017-12-28 18:56:24 +01:00
|
|
|
{ stdenv, fetchzip }:
|
2017-09-07 22:22:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "supervise-${version}";
|
2018-02-12 01:34:15 +01:00
|
|
|
version = "1.3.0";
|
2017-09-07 22:22:28 +02:00
|
|
|
|
2017-12-28 18:56:24 +01:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/catern/supervise/releases/download/v${version}/supervise-${version}.tar.gz";
|
2018-02-12 01:34:15 +01:00
|
|
|
sha256 = "1y3jaqzprlkba2165nlcr250jc3mpxawd5sfjryb3db1nw66al04";
|
2017-09-07 22:22:28 +02: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 ];
|
|
|
|
};
|
|
|
|
}
|