Merge pull request #195271 from mweinelt/libxcrypt-continued

Changed files
+11 -2
pkgs
development
libraries
libxcrypt
+11 -2
pkgs/development/libraries/libxcrypt/default.nix
···
-
{ lib, stdenv, fetchurl, perl }:
+
{ lib, stdenv, fetchurl, perl, nixosTests }:
stdenv.mkDerivation rec {
pname = "libxcrypt";
···
url = "https://github.com/besser82/libxcrypt/releases/download/v${version}/libxcrypt-${version}.tar.xz";
sha256 = "sha256-npNoEfn60R28ozyhm9l8VcUus8oVkB8nreBGzHnmnoc=";
};
+
+
outputs = [
+
"out"
+
"man"
+
];
configureFlags = [
"--enable-hashes=all"
···
doCheck = !stdenv.hostPlatform.isMusl;
+
passthru.tests = {
+
inherit (nixosTests) login shadow;
+
};
+
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 ];
+
maintainers = with maintainers; [ dottedmag hexa ];
license = licenses.lgpl21Plus;
};
}