nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 23 lines 579 B view raw
1{ 2 lib, 3 stdenv, 4 fetchzip, 5}: 6 7stdenv.mkDerivation (finalAttrs: { 8 9 pname = "supervise"; 10 version = "1.4.0"; 11 12 src = fetchzip { 13 url = "https://github.com/catern/supervise/releases/download/v${finalAttrs.version}/supervise-${finalAttrs.version}.tar.gz"; 14 sha256 = "0jk6q2f67pfs18ah040lmsbvbrnjap7w04jjddsfn1j5bcrvs13x"; 15 }; 16 17 meta = { 18 homepage = "https://github.com/catern/supervise"; 19 description = "Minimal unprivileged process supervisor making use of modern Linux features"; 20 platforms = lib.platforms.linux; 21 license = lib.licenses.gpl3; 22 }; 23})