nixpkgs/pkgs/development/tools/dockle/default.nix

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

49 lines
1.2 KiB
Nix
Raw Normal View History

2021-02-12 15:07:16 +00:00
{ lib, buildGoModule, fetchFromGitHub, pkg-config, btrfs-progs, lvm2 }:
buildGoModule rec {
pname = "dockle";
2022-02-26 14:44:42 +00:00
version = "0.4.5";
2021-02-12 15:07:16 +00:00
src = fetchFromGitHub {
owner = "goodwithtech";
repo = pname;
rev = "v${version}";
2022-02-26 14:44:42 +00:00
sha256 = "sha256-QC0WAM+qitee0dyJorl5Hio3COy4JiIHmFgBIj7S2yM=";
2021-02-12 15:07:16 +00:00
};
2022-02-26 14:44:42 +00:00
vendorSha256 = "sha256-9n/782uKu7qNV/WEpbEV3aHcPXipyOhGdAhT/F4O2xc=";
2021-02-12 15:07:16 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ btrfs-progs lvm2 ];
2021-08-21 08:23:48 +00:00
ldflags = [
"-s" "-w" "-X main.version=${version}"
];
2021-02-12 15:07:16 +00:00
preCheck = ''
# Remove tests that use networking
2021-02-22 10:57:00 +00:00
rm pkg/scanner/scan_test.go
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/dockle --help
$out/bin/dockle --version | grep "dockle version ${version}"
runHook postInstallCheck
2021-02-12 15:07:16 +00:00
'';
meta = with lib; {
homepage = "https://containers.goodwith.tech";
changelog = "https://github.com/goodwithtech/dockle/releases/tag/v${version}";
description = "Container Image Linter for Security";
longDescription = ''
Container Image Linter for Security.
Helping build the Best-Practice Docker Image.
Easy to start.
'';
license = licenses.asl20;
maintainers = with maintainers; [ jk ];
};
}