editorconfig-checker: fix build on darwin
This commit is contained in:
parent
b49ca4818d
commit
6552397b67
@ -1,4 +1,4 @@
|
|||||||
{ buildGoModule, fetchFromGitHub, lib }:
|
{ buildGoModule, fetchFromGitHub, stdenv, Security }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "editorconfig-checker";
|
pname = "editorconfig-checker";
|
||||||
@ -13,7 +13,9 @@ buildGoModule rec {
|
|||||||
|
|
||||||
modSha256 = "1iiv12ginb3ky739z7v8wf4z5lv24gmghbybs3lzay0kqn449n4x";
|
modSha256 = "1iiv12ginb3ky739z7v8wf4z5lv24gmghbybs3lzay0kqn449n4x";
|
||||||
|
|
||||||
meta = with lib; {
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "A tool to verify that your files are in harmony with your .editorconfig";
|
description = "A tool to verify that your files are in harmony with your .editorconfig";
|
||||||
homepage = "https://editorconfig-checker.github.io/";
|
homepage = "https://editorconfig-checker.github.io/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -10233,7 +10233,9 @@ in
|
|||||||
|
|
||||||
drush = callPackage ../development/tools/misc/drush { };
|
drush = callPackage ../development/tools/misc/drush { };
|
||||||
|
|
||||||
editorconfig-checker = callPackage ../development/tools/misc/editorconfig-checker { };
|
editorconfig-checker = callPackage ../development/tools/misc/editorconfig-checker {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
editorconfig-core-c = callPackage ../development/tools/misc/editorconfig-core-c { };
|
editorconfig-core-c = callPackage ../development/tools/misc/editorconfig-core-c { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user