Update to version 1.8.0
Signed-off-by: Adriano Caloiaro <code@adriano.fyi>
This commit is contained in:
parent
88b8474038
commit
b6f3fd25f0
1 changed files with 10 additions and 10 deletions
10
default.nix
10
default.nix
|
|
@ -1,4 +1,5 @@
|
|||
{ pkgs ? (
|
||||
{
|
||||
pkgs ? (
|
||||
let
|
||||
inherit (builtins) fetchTree fromJSON readFile;
|
||||
inherit ((fromJSON (readFile ./flake.lock)).nodes) nixpkgs gomod2nix;
|
||||
|
|
@ -8,13 +9,12 @@
|
|||
(import "${fetchTree gomod2nix.locked}/overlay.nix")
|
||||
];
|
||||
}
|
||||
)
|
||||
, buildGoApplication ? pkgs.buildGoApplication
|
||||
),
|
||||
buildGoApplication ? pkgs.buildGoApplication,
|
||||
}:
|
||||
|
||||
buildGoApplication {
|
||||
pname = "di-tui";
|
||||
version = "v1.8.0";
|
||||
version = "1.8.0";
|
||||
pwd = ./.;
|
||||
src = ./.;
|
||||
modules = ./gomod2nix.toml;
|
||||
|
|
|
|||
Loading…
Reference in a new issue