Skip to content

Commit

Permalink
copywrite: init at 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcorreia committed Dec 23, 2024
1 parent 0865a89 commit 613babf
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions pkgs/by-name/co/copywrite/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
installShellFiles,
testers,
copywrite,
}:

let
commitHash = "6ed520a710166c6094098b786c63f212604654a4"; # matches tag release
shortCommitHash = builtins.substring 0 7 commitHash;
in
buildGoModule rec {
pname = "copywrite";
version = "0.19.0";

src = fetchFromGitHub {
owner = "hashicorp";
repo = "copywrite";
rev = "v${version}";
hash = "sha256-DmlPioaw/wMk8GoBYNG24P4J1C6h0bjVjjOuMYW6Tgo=";
};

vendorHash = "sha256-ZIu0/fue3xi+YVE9GFsVjCNs8t3c3TWH8O0xUzJdim8=";

ldflags = [
"-s"
"-w"
"-X github.com/hashicorp/copywrite/cmd.version=${version}"
"-X github.com/hashicorp/copywrite/cmd.commit=${shortCommitHash}"
];

env.CGO_ENABLED = 0;

nativeBuildInputs = [ installShellFiles ];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
$out/bin/copywrite completion bash > copywrite.bash
$out/bin/copywrite completion zsh > copywrite.zsh
$out/bin/copywrite completion fish > copywrite.fish
installShellCompletion copywrite.{bash,zsh,fish}
'';

passthru.tests.version = testers.testVersion {
package = copywrite;
command = "copywrite --version";
version = "${version}-${shortCommitHash}";
};

meta = {
description = "Automate copyright headers and license files at scale";
mainProgram = "copywrite";
homepage = "https://github.com/hashicorp/copywrite";
changelog = "https://github.com/hashicorp/copywrite/releases/tag/v${version}";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ dvcorreia ];
};
}

0 comments on commit 613babf

Please sign in to comment.