mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
30 lines
732 B
Nix
30 lines
732 B
Nix
{ lib, buildGoModule, fetchFromGitHub, git }:
|
|
|
|
buildGoModule rec {
|
|
pname = "conform";
|
|
version = "0.1.0-alpha.27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "siderolabs";
|
|
repo = "conform";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-lIXkflWQcUcmRDX9iSszFLKpI8nSgkCCB2+GQn07+DM=";
|
|
};
|
|
vendorSha256 = "sha256-Oigt7tAK4jhBQtfG1wdLHqi11NWu6uJn5fmuqTmR76E=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/siderolabs/conform/internal/version.Tag=v${version}"
|
|
];
|
|
|
|
nativeCheckInputs = [ git ];
|
|
|
|
meta = with lib; {
|
|
description = "Policy enforcement for your pipelines";
|
|
homepage = "https://github.com/siderolabs/conform";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ jmgilman jk ];
|
|
};
|
|
}
|