Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 31 lines 617 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, 6}: 7 8stdenv.mkDerivation rec { 9 pname = "multirun"; 10 version = "1.1.3"; 11 12 src = fetchFromGitHub { 13 owner = "nicolas-van"; 14 repo = "multirun"; 15 rev = version; 16 hash = "sha256-I95nxZD65tHiok4MzsGG7gyaxPHbqQLuRWdHUPNhLu8="; 17 }; 18 19 nativeBuildInputs = [ 20 cmake 21 ]; 22 23 meta = with lib; { 24 description = "Minimalist init process designed for Docker"; 25 homepage = "https://github.com/nicolas-van/multirun"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ nickcao ]; 28 mainProgram = "multirun"; 29 platforms = platforms.all; 30 }; 31}