mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
beanstalkd: add link to nixos test
This commit is contained in:
parent
7c17768a48
commit
c6a17072c8
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, installShellFiles }:
|
||||
{ lib, stdenv, fetchurl, installShellFiles, nixosTests }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.12";
|
||||
|
@ -19,6 +19,10 @@ stdenv.mkDerivation rec {
|
|||
installManPage doc/beanstalkd.1
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
smoke-test = nixosTests.beanstalkd;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://kr.github.io/beanstalkd/";
|
||||
description = "A simple, fast work queue";
|
||||
|
|
Loading…
Reference in a new issue