mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 14:00:59 +03:00
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-subtrac = callPackage ./git-subtrac { };
|
||||
git-subtrac = callPackage ./git-subtrac {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
git-sync = callPackage ./git-sync { };
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "git-subtrac";
|
||||
@ -13,7 +13,9 @@ buildGoModule rec {
|
||||
|
||||
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";
|
||||
homepage = "https://github.com/apenwarr/git-subtrac";
|
||||
license = licenses.asl20;
|
||||
|
Loading…
Reference in New Issue
Block a user