sudolikeaboss: remove input propagation and unused hook
This package is a leaf that exports no libraries, so propagating its inputs should have no effect. The fixDarwinDylibNames hook only applies to *.dylib files, which this package does not contain.
This commit is contained in:
parent
722d02a720
commit
5b5d38a7e7
|
@ -1,5 +1,5 @@
|
||||||
# This file was generated by go2nix, then modified by hand for Darwin support.
|
# This file was generated by go2nix, then modified by hand for Darwin support.
|
||||||
{ stdenv, buildGoPackage, fetchFromGitHub, fixDarwinDylibNames, darwin }:
|
{ stdenv, buildGoPackage, fetchFromGitHub, darwin }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
pname = "sudolikeaboss-unstable";
|
pname = "sudolikeaboss-unstable";
|
||||||
|
@ -17,13 +17,10 @@ buildGoPackage rec {
|
||||||
|
|
||||||
goDeps = ./deps.nix;
|
goDeps = ./deps.nix;
|
||||||
|
|
||||||
propagatedBuildInputs = with darwin.apple_sdk.frameworks; [
|
buildInputs = with darwin.apple_sdk.frameworks; [
|
||||||
Cocoa
|
Cocoa
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedNativeBuildInputs =
|
|
||||||
stdenv.lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
inherit version;
|
inherit version;
|
||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage;
|
||||||
|
|
Loading…
Reference in New Issue