ldid-procursus: Migrate to by-name

This commit is contained in:
Keto 2024-09-01 22:30:00 -04:00
parent 356b93e595
commit 135d180253
No known key found for this signature in database
GPG Key ID: F256D023018D9970
2 changed files with 17 additions and 11 deletions

View File

@ -1,10 +1,11 @@
{ lib
, stdenv
, fetchFromGitHub
, installShellFiles
, pkg-config
, libplist
, openssl
{
lib,
stdenv,
fetchFromGitHub,
installShellFiles,
pkg-config,
libplist,
openssl,
}:
stdenv.mkDerivation (finalAttrs: {
@ -18,8 +19,15 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-QnSmWY9zCOPYAn2VHc5H+VQXjTCyr0EuosxvKGGpDtQ=";
};
nativeBuildInputs = [ pkg-config installShellFiles ];
buildInputs = [ libplist openssl ];
nativeBuildInputs = [
pkg-config
installShellFiles
];
buildInputs = [
libplist
openssl
];
stripDebugFlags = [ "--strip-unneeded" ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];

View File

@ -39662,8 +39662,6 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
};
ldid-procursus = callPackage ../development/tools/ldid-procursus { };
xcolor = callPackage ../tools/graphics/xcolor { };
xcfun = callPackage ../development/libraries/science/chemistry/xcfun { };