From c409f41ccbda2b651f7e6f615483623946d6a8d3 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 21 Oct 2018 22:10:07 +0200 Subject: pkgs/santander: Fix library path for pcsclite The pcsclite derivation results in multiple outputs, so let's make sure we actually get the right path to the library instead of ending up using that from the "bin" output (which obviously doesn't exist). Signed-off-by: aszlig --- pkgs/aszlig/santander/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/aszlig') diff --git a/pkgs/aszlig/santander/default.nix b/pkgs/aszlig/santander/default.nix index bedff554..adac0a8d 100644 --- a/pkgs/aszlig/santander/default.nix +++ b/pkgs/aszlig/santander/default.nix @@ -4,7 +4,7 @@ let patchedWine = let - libpcsclite = "${pcsclite}/lib/libpcsclite.so"; + libpcsclite = "${lib.getLib pcsclite}/lib/libpcsclite.so"; in winePackages.minimal.overrideAttrs (drv: { scard4wine = fetchgit { url = "git://git.code.sf.net/p/scard4wine/code"; -- cgit 1.4.1