at 23.11-beta 24 lines 705 B view raw
1{ stdenv, lib, fetchurl, guile, pkg-config, guile-fibers }: 2 3stdenv.mkDerivation rec { 4 pname = "gnu-shepherd"; 5 version = "0.9.3"; 6 7 src = fetchurl { 8 url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz"; 9 sha256 = "0qy2yq13xhf05an5ilz7grighdxicx56211yaarqq5qigiiybc32"; 10 }; 11 12 configureFlags = [ "--localstatedir=/" ]; 13 14 buildInputs = [ guile guile-fibers ]; 15 nativeBuildInputs = [ pkg-config ]; 16 17 meta = with lib; { 18 homepage = "https://www.gnu.org/software/shepherd/"; 19 description = "Service manager that looks after the herd of system services"; 20 license = with licenses; [ gpl3Plus ]; 21 platforms = platforms.unix; 22 maintainers = with maintainers; [ kloenk ]; 23 }; 24}