pkgs/gosignify: use default go

This commit is contained in:
Aaron Bieber 2022-10-17 19:28:09 -06:00
parent 6f6d224c92
commit 6b1b3d3ebd
No known key found for this signature in database
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ pkgs, lib, isUnstable, ... }:
let
gosignify = pkgs.callPackage ../pkgs/gosignify.nix { };
gosignify = pkgs.callPackage ../pkgs/gosignify.nix { inherit isUnstable; };
ix = pkgs.writeScriptBin "ix" (import ./ix.nix { inherit (pkgs) perl; });
checkRestart = pkgs.writeScriptBin "check-restart"

View File

@ -1,7 +1,7 @@
{ lib, buildGo119Module, fetchFromGitHub, ... }:
{ lib, buildGoModule, fetchFromGitHub, isUnstable, ... }:
with lib;
buildGo119Module rec {
buildGoModule rec {
pname = "gosignify";
version = "0.0.0-20210702013543-c91e79d30e91";
@ -12,9 +12,10 @@ buildGo119Module rec {
sha256 = "sha256-Ynmx6NUUQ5WEYFowuW/ELjV2ESOHqoOTVqdZ6CWt6LQ=";
};
vendorHash = null;
proxyVendor = false;
vendorSha256 = null;
meta = {
description = "gosignify is a Go reimplementation of OpenBSD's signify";
homepage = "https://github.com/frankbraun/gosignify";