diff options
author | makefu <github@syntax-fehler.de> | 2021-12-04 21:24:48 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-12-04 21:24:48 +0100 |
commit | 7ca789f598c856ceda3ac55d028ab5a8a8a1e6a2 (patch) | |
tree | 9793b82947801f39f55b393cd02951c25de26099 /makefu/5pkgs/cmpforopenssl | |
parent | 4f500d5006b9a1594589b60278515220ed4b75da (diff) |
ma pkgs: stdenv.lib -> lib
Diffstat (limited to 'makefu/5pkgs/cmpforopenssl')
-rw-r--r-- | makefu/5pkgs/cmpforopenssl/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/makefu/5pkgs/cmpforopenssl/default.nix b/makefu/5pkgs/cmpforopenssl/default.nix index 3b9a20098..b8934357a 100644 --- a/makefu/5pkgs/cmpforopenssl/default.nix +++ b/makefu/5pkgs/cmpforopenssl/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, buildPackages, perl, fetchgit +{ stdenv, lib, fetchurl, buildPackages, perl, fetchgit , hostPlatform }: -with stdenv.lib; +with lib; let @@ -70,8 +70,8 @@ let meta = { homepage = https://sourceforge.net/p/cmpforopenssl ; description = "A cryptographic library that implements the SSL and TLS protocols"; - platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.makefu ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.makefu ]; priority = 0; # resolves collision with ‘man-pages’ }; }; |