nixpkgs/pkgs/by-name/mu/multirun/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
611 B
Nix
Raw Normal View History

2023-12-25 18:10:48 +03:00
{ 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 = "Minimalist init process designed for Docker";
2023-12-25 18:10:48 +03:00
homepage = "https://github.com/nicolas-van/multirun";
license = licenses.mit;
maintainers = with maintainers; [ nickcao ];
mainProgram = "multirun";
platforms = platforms.all;
};
}