Unverified Commit 9dec7975 authored by Marcin Serwin's avatar Marcin Serwin Committed by GitHub
Browse files

opensc: fix ill-defined escape sequence in version regex (#498525)

parents b314521e b11b4377
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ stdenv.mkDerivation (finalAttrs: {
    "completiondir=$(out)/etc"
  ];

  passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=^([0-9\.]+)$" ]; };
  passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=^([0-9\\.]+)$" ]; };

  meta = {
    description = "Set of libraries and utilities to access smart cards";