summary refs log tree commit diff
path: root/pkgs/development/libraries/scmccid
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-11-06 00:44:33 +0000
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-11-06 00:48:16 +0000
commit007f80c1d0440b89970000b92f78ce76186d99a5 (patch)
tree4e1b441ae8f3d451ebecde034fd4bc8456286f0c /pkgs/development/libraries/scmccid
parentd91986c24f1abc34b9785d9e4cd6dbe0bf398853 (diff)
downloadnixpkgs-007f80c1d0440b89970000b92f78ce76186d99a5.tar
nixpkgs-007f80c1d0440b89970000b92f78ce76186d99a5.tar.gz
nixpkgs-007f80c1d0440b89970000b92f78ce76186d99a5.tar.bz2
nixpkgs-007f80c1d0440b89970000b92f78ce76186d99a5.tar.lz
nixpkgs-007f80c1d0440b89970000b92f78ce76186d99a5.tar.xz
nixpkgs-007f80c1d0440b89970000b92f78ce76186d99a5.tar.zst
nixpkgs-007f80c1d0440b89970000b92f78ce76186d99a5.zip
Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
Diffstat (limited to 'pkgs/development/libraries/scmccid')
-rw-r--r--pkgs/development/libraries/scmccid/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/scmccid/default.nix b/pkgs/development/libraries/scmccid/default.nix
index f18107c48a5..1b0039952d7 100644
--- a/pkgs/development/libraries/scmccid/default.nix
+++ b/pkgs/development/libraries/scmccid/default.nix
@@ -4,7 +4,7 @@ assert stdenv ? gcc && stdenv.gcc.libc != null;
 
 stdenv.mkDerivation rec {
   name = "scmccid-5.0.11";
-  
+
   src = if stdenv.system == "i686-linux" then (fetchurl {
       url = "http://www.scmmicro.com/support/download/scmccid_5.0.11_linux.tar.gz";
       sha256 = "1r5wkarhzl09ncgj55baizf573czw0nplh1pgddzx9xck66kh5bm";
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = http://www.scmmicro.com/support/pc-security-support/downloads.html;
     description = "PCSC drivers for linux, for the SCM SCR3310 v2.0 card and others";
-    license = "nonfree";
+    license = stdenv.lib.licenses.unfree;
     maintainers = with stdenv.lib.maintainers; [viric];
     platforms = with stdenv.lib.platforms; linux;
   };