3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #201116 from aaronjheng/zhf/fn-cli

This commit is contained in:
Martin Weinelt 2022-11-14 22:52:14 +01:00 committed by GitHub
commit f69144b668
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub, docker }:
{ lib, stdenv, buildGoModule, fetchFromGitHub, docker }:
buildGoModule rec {
pname = "fn";
@ -32,5 +32,6 @@ buildGoModule rec {
homepage = "https://fnproject.io";
license = licenses.asl20;
maintainers = [ maintainers.c4605 ];
broken = stdenv.isDarwin;
};
}