mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, nix-update-script
|
|
, testers
|
|
, minify
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "minify";
|
|
version = "2.20.37";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tdewolff";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-sBq1RlvyTelPS3gUgucWnyKV93npxvHetB4ezxnhIbU=";
|
|
};
|
|
|
|
vendorHash = "sha256-LT39GYDcFL3hjiYwvbSYjV8hcg0KNgQmLMRWcdz4T48=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
|
|
|
|
subPackages = [ "cmd/minify" ];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion {
|
|
inherit version;
|
|
package = minify;
|
|
command = "minify --version";
|
|
};
|
|
};
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd minify --bash cmd/minify/bash_completion
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Go minifiers for web formats";
|
|
homepage = "https://go.tacodewolff.nl/minify";
|
|
downloadPage = "https://github.com/tdewolff/minify";
|
|
changelog = "https://github.com/tdewolff/minify/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gaelreyrol ];
|
|
mainProgram = "minify";
|
|
};
|
|
}
|