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.
42 lines
864 B
Nix
42 lines
864 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, kool
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kool";
|
|
version = "3.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kool-dev";
|
|
repo = "kool";
|
|
rev = version;
|
|
hash = "sha256-AbE0MT55LQgDY/WZRs+kCfreLYtSyzmXkYIQmJC4Hbo=";
|
|
};
|
|
|
|
vendorHash = "sha256-wzTsd2ITwnPFc85bXoZLLb9wKvHYOgnb1FGiFXLkkiE=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=kool-dev/kool/commands.version=${version}"
|
|
];
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion {
|
|
package = kool;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "From local development to the cloud: development workflow made easy";
|
|
mainProgram = "kool";
|
|
homepage = "https://kool.dev";
|
|
changelog = "https://github.com/kool-dev/kool/releases/tag/${src.rev}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|