Merge pull request #109632 from siraben/stdenv-lib-2

This commit is contained in:
Sandro
2021-01-17 16:29:40 +01:00
committed by GitHub
12 changed files with 24 additions and 23 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ cabextract, fetchFromGitHub, readline, stdenv_32bit }:
{ lib, cabextract, fetchFromGitHub, readline, stdenv_32bit }:
# stdenv_32bit is needed because the program depends upon 32-bit libraries and does not have
# support for 64-bit yet: it requires libc6-dev:i386, libreadline-dev:i386.
@@ -21,7 +21,7 @@ stdenv_32bit.mkDerivation rec {
cp mpclient $out/bin/
'';
meta = with stdenv_32bit.lib; {
meta = with lib; {
homepage = "https://github.com/taviso/loadlibrary";
description = "Porting Windows Dynamic Link Libraries to Linux";
platforms = platforms.linux;