pkgs(vals): remove in favor of nixpkgs derivation

This commit is contained in:
Bryton Hall 2023-06-11 23:53:22 -04:00
parent ab39f9e06d
commit 5d95447b75
2 changed files with 1 additions and 19 deletions

View file

@ -138,10 +138,9 @@
}
// {
cli = pkgs.callPackage ./pkgs/kubenix.nix {
inherit (self.packages.${system}) vals;
inherit (self.packages.${system});
};
default = self.packages.${system}.cli;
vals = pkgs.callPackage ./pkgs/vals.nix {};
docs = import ./docs {
inherit pkgs;
options =

View file

@ -1,17 +0,0 @@
{
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "vals";
version = "0.18.0";
src = fetchFromGitHub {
owner = "variantdev";
repo = pname;
rev = "v${version}";
sha256 = "sha256-R0Au34zywb0nv5LOvLb+7wSfn563uzQgiH3mefMlX7A=";
};
vendorSha256 = "sha256-fsTUgtMFDPjNJVhBlyq/rWAhOEAOSRQx3l1K0nNK2J8=";
checkPhase = null;
}