Merge pull request #283452 from SuperSandro2000/pcsclite-outputs

pcsclite: move binaries, polkit, systemd files to out, move libraries to lib
This commit is contained in:
Nick Cao 2024-01-28 21:19:51 -05:00 committed by GitHub
commit 519ebe37e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View File

@ -46,8 +46,8 @@ in
config = mkIf config.services.pcscd.enable {
environment.etc."reader.conf".source = cfgFile;
environment.systemPackages = [ package.out ];
systemd.packages = [ (getBin package) ];
environment.systemPackages = [ package ];
systemd.packages = [ package ];
services.pcscd.plugins = [ pkgs.ccid ];
@ -64,7 +64,7 @@ in
# around it, we force the path to the cfgFile.
#
# https://github.com/NixOS/nixpkgs/issues/121088
serviceConfig.ExecStart = [ "" "${getBin package}/bin/pcscd -f -x -c ${cfgFile}" ];
serviceConfig.ExecStart = [ "" "${package}/bin/pcscd -f -x -c ${cfgFile}" ];
};
};
}

View File

@ -47,7 +47,7 @@ mavenJdk8.buildMavenPackage rec {
cp tool/target/gp.jar "$out/share/java"
makeWrapper "${jre8_headless}/bin/java" "$out/bin/gp" \
--add-flags "-jar '$out/share/java/gp.jar'" \
--prefix LD_LIBRARY_PATH : "${pcsclite.out}/lib"
--prefix LD_LIBRARY_PATH : "${lib.getLib pcsclite}/lib"
'';
meta = with lib; {

View File

@ -21,7 +21,7 @@ stdenv.mkDerivation (finalAttrs: {
inherit pname;
version = "2.0.1";
outputs = [ "bin" "out" "dev" "doc" "man" ];
outputs = [ "out" "lib" "dev" "doc" "man" ];
src = fetchFromGitLab {
domain = "salsa.debian.org";
@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
(lib.enableFeature polkitSupport "polkit")
] ++ lib.optionals stdenv.isLinux [
"--enable-ipcdir=/run/pcscd"
"--with-systemdsystemunitdir=${placeholder "bin"}/lib/systemd/system"
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
];
makeFlags = [