mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
19 lines
503 B
Nix
19 lines
503 B
Nix
{ stdenv, fetchurl, cyrus_sasl, libevent }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmemcached-1.0.7";
|
|
|
|
src = fetchurl {
|
|
url = https://launchpad.net/libmemcached/1.0/1.0.7/+download/libmemcached-1.0.7.tar.gz;
|
|
sha256 = "10cdczkgqiirjy7jwfdk49namqi4jiv1djqrf5fxbaiyfg4qdyiy";
|
|
};
|
|
|
|
buildInputs = [ cyrus_sasl libevent ];
|
|
|
|
meta = {
|
|
homepage = http://libmemcached.org;
|
|
description = "Open source C/C++ client library and tools for the memcached server";
|
|
license = "BSD";
|
|
};
|
|
}
|