gitAndTools.git-subtrac: fix build on darwin
This commit is contained in:
parent
b30c0c8d5f
commit
3e92406ab0
@ -136,7 +136,9 @@ let
|
|||||||
|
|
||||||
git-subrepo = callPackage ./git-subrepo { };
|
git-subrepo = callPackage ./git-subrepo { };
|
||||||
|
|
||||||
git-subtrac = callPackage ./git-subtrac { };
|
git-subtrac = callPackage ./git-subtrac {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
git-sync = callPackage ./git-sync { };
|
git-sync = callPackage ./git-sync { };
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "git-subtrac";
|
pname = "git-subtrac";
|
||||||
@ -13,7 +13,9 @@ buildGoModule rec {
|
|||||||
|
|
||||||
modSha256 = "147vzllp1gydk2156hif313vwykagrj35vaiqy1swqczxs7p9hhs";
|
modSha256 = "147vzllp1gydk2156hif313vwykagrj35vaiqy1swqczxs7p9hhs";
|
||||||
|
|
||||||
meta = with lib; {
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Keep the content for your git submodules all in one place: the parent repo";
|
description = "Keep the content for your git submodules all in one place: the parent repo";
|
||||||
homepage = "https://github.com/apenwarr/git-subtrac";
|
homepage = "https://github.com/apenwarr/git-subtrac";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user