Merge pull request #276726 from NickCao/multirun

multirun: init at 1.1.3
This commit is contained in:
Nick Cao 2023-12-26 13:10:42 -05:00 committed by GitHub
commit 1b74ec2ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,30 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "multirun";
version = "1.1.3";
src = fetchFromGitHub {
owner = "nicolas-van";
repo = "multirun";
rev = version;
hash = "sha256-I95nxZD65tHiok4MzsGG7gyaxPHbqQLuRWdHUPNhLu8=";
};
nativeBuildInputs = [
cmake
];
meta = with lib; {
description = "A minimalist init process designed for Docker";
homepage = "https://github.com/nicolas-van/multirun";
license = licenses.mit;
maintainers = with maintainers; [ nickcao ];
mainProgram = "multirun";
platforms = platforms.all;
};
}