libnss-mysql: add test
This commit is contained in:
parent
ac3352a65c
commit
c0b2326892
1 changed files with 12 additions and 1 deletions
|
@ -1,4 +1,11 @@
|
|||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, which, libmysqlclient }:
|
||||
{ lib
|
||||
, nixosTests
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
, which
|
||||
, libmysqlclient
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libnss-mysql";
|
||||
|
@ -20,6 +27,10 @@ stdenv.mkDerivation rec {
|
|||
rm -r $out/etc
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
inherit (nixosTests) auth-mysql;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "MySQL module for the Solaris Nameservice Switch (NSS)";
|
||||
homepage = "https://github.com/saknopper/libnss-mysql";
|
||||
|
|
Loading…
Reference in a new issue