nixpkgs/pkgs/tools/misc/undocker/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

37 lines
834 B
Nix

{ lib
, buildGoModule
, fetchFromGitea
, gnumake
}:
let
version = "1.2.2";
hash = "sha256-kBqNopcHpldU5oD6zoVjPjP84t12QFcbWBSNNgwImKg=";
src = fetchFromGitea {
domain = "git.jakstys.lt";
owner = "motiejus";
repo = "undocker";
rev = "v${version}";
hash = hash;
};
in
buildGoModule {
pname = "undocker";
inherit version src;
nativeBuildInputs = [ gnumake ];
buildPhase = "make VSN=v${version} VSNHASH=${hash} undocker";
installPhase = "install -D undocker $out/bin/undocker";
vendorHash = null;
meta = with lib; {
homepage = "https://git.jakstys.lt/motiejus/undocker";
description = "CLI tool to convert a Docker image to a flattened rootfs tarball";
license = licenses.asl20;
maintainers = with maintainers; [ jordanisaacs motiejus ];
mainProgram = "undocker";
};
}