depot/pkgs/by-name/li/lilipod/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

64 lines
1.2 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
installShellFiles,
stdenv,
shadow,
util-linux,
}:
buildGoModule rec {
pname = "lilipod";
version = "0.0.3";
src = fetchFromGitHub {
owner = "89luca89";
repo = "lilipod";
rev = "v${version}";
hash = "sha256-PqeYNLr4uXe+H+DLENlUpl1H2wV6VJvDoA+MVP3SRqY=";
};
vendorHash = null;
buildPhase = ''
runHook preBuild
RELEASE_VERSION=${version} make all
runHook postBuild
'';
checkPhase = ''
runHook preCheck
make coverage
runHook postCheck
'';
installPhase = ''
runHook preInstall
install -Dm755 lilipod $out/bin/lilipod
runHook postInstall
'';
meta = {
description = "Very simple (as in few features) container and image manager";
longDescription = ''
Lilipod is a very simple container manager with minimal features to:
- Download and manager images
- Create and run containers
It tries to keep a somewhat compatible CLI interface with Podman/Docker/Nerdctl.
'';
homepage = "https://github.com/89luca89/lilipod";
license = lib.licenses.gpl3Only;
mainProgram = "lilipod";
maintainers = with lib.maintainers; [ aleksana ];
platforms = lib.platforms.linux;
};
}