nixpkgs/pkgs/tools/system/supervise/default.nix

21 lines
596 B
Nix
Raw Normal View History

{ lib, stdenv, fetchzip }:
2017-09-07 20:22:28 +00:00
stdenv.mkDerivation rec {
pname = "supervise";
2018-02-20 19:04:18 +00:00
version = "1.4.0";
2017-09-07 20:22:28 +00: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 20:22:28 +00:00
};
meta = with lib; {
homepage = "https://github.com/catern/supervise";
2017-09-07 20:22:28 +00: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 20:22:28 +00:00
};
}