libxcrypt: init at 4.4.18

Closes #114632
Related to #112371
This commit is contained in:
Misha Gusarov 2021-02-28 12:44:53 +00:00
parent a44728d459
commit 4d67868912
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, perl }:
stdenv.mkDerivation rec {
pname = "libxcrypt";
version = "4.4.18";
src = fetchFromGitHub {
owner = "besser82";
repo = "libxcrypt";
rev = "v${version}";
sha256 = "4015bf1b3a2aab31da5a544424be36c1a0f0ffc1eaa219c0e7b048e4cdcbbfe1";
};
preConfigure = ''
patchShebangs autogen.sh
./autogen.sh
'';
nativeBuildInputs = [ autoconf automake libtool pkg-config perl ];
doCheck = true;
meta = with lib; {
description = "Extended crypt library for descrypt, md5crypt, bcrypt, and others";
homepage = "https://github.com/besser82/libxcrypt/";
platforms = platforms.all;
maintainers = with maintainers; [ dottedmag ];
license = licenses.lgpl21Plus;
};
}

View File

@ -15778,6 +15778,8 @@ in
libx86 = callPackage ../development/libraries/libx86 {}; libx86 = callPackage ../development/libraries/libx86 {};
libxcrypt = callPackage ../development/libraries/libxcrypt { };
libxdg_basedir = callPackage ../development/libraries/libxdg-basedir { }; libxdg_basedir = callPackage ../development/libraries/libxdg-basedir { };
libxkbcommon = libxkbcommon_8; libxkbcommon = libxkbcommon_8;