lol

libmcrypt: Fixed missing nmedit on darwin (#15775)

authored by

Marc Scholten and committed by
Domen Kožar
45f9fd8c 65ccda5b

+3 -2
+3 -2
pkgs/development/libraries/libmcrypt/default.nix
··· 1 - { stdenv, fetchurl, disablePosixThreads ? false }: 1 + { stdenv, fetchurl, darwin, disablePosixThreads ? false }: 2 2 3 3 with stdenv.lib; 4 4 ··· 10 10 sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4"; 11 11 }; 12 12 13 - buildInputs = []; 13 + buildInputs = optional stdenv.isDarwin darwin.cctools; 14 14 15 15 configureFlags = optional disablePosixThreads 16 16 [ "--disable-posix-threads" ]; ··· 19 19 description = "Replacement for the old crypt() package and crypt(1) command, with extensions"; 20 20 homepage = http://mcrypt.sourceforge.net; 21 21 license = "GPL"; 22 + platforms = platforms.all; 22 23 }; 23 24 }