mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
libmemcached: set meta.platforms
And a more precise license (BSD => 3-clause BSD).
This commit is contained in:
parent
7c951ede31
commit
95636ec752
1 changed files with 3 additions and 2 deletions
|
@ -15,9 +15,10 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ cyrus_sasl libevent ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://libmemcached.org;
|
||||
description = "Open source C/C++ client library and tools for the memcached server";
|
||||
license = "BSD";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue