forked from mirrors/nixpkgs
conform: init at 0.1.0-alpha.25
fix: removes trailing period in package description chore: adds jk as maintainer test: enforces running tests conform: init at 0.1.0-alpha.25 fix: fixes review comments conform: init at 0.1.0-alpha.25
This commit is contained in:
parent
5a188dfbca
commit
5c871cdf83
pkgs
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub, git }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "conform";
|
||||||
|
version = "0.1.0-alpha.25";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "siderolabs";
|
||||||
|
repo = "conform";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-WgWgigpqPoEBY4tLjbzK02WFwrCWPGQWJ5eakLv5IWw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-Oigt7tAK4jhBQtfG1wdLHqi11NWu6uJn5fmuqTmR76E=";
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
"-X github.com/talos-systems/conform/internal/version.Tag=v${version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [ git ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Policy enforcement for your pipelines";
|
||||||
|
homepage = "https://github.com/siderolabs/conform";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = with maintainers; [ jmgilman jk ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5561,6 +5561,8 @@ with pkgs;
|
||||||
|
|
||||||
choose = callPackage ../tools/text/choose { };
|
choose = callPackage ../tools/text/choose { };
|
||||||
|
|
||||||
|
conform = callPackage ../applications/version-management/git-and-tools/conform { };
|
||||||
|
|
||||||
emscripten = callPackage ../development/compilers/emscripten {
|
emscripten = callPackage ../development/compilers/emscripten {
|
||||||
llvmPackages = llvmPackages_13;
|
llvmPackages = llvmPackages_13;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue