nixpkgs/pkgs/development/libraries/cppcms/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

29 lines
666 B
Nix

{ stdenv, fetchurl, cmake, pcre, zlib, python, openssl }:
stdenv.mkDerivation rec {
name = "cppcms";
version = "1.0.5";
src = fetchurl {
url = "mirror://sourceforge/cppcms/${name}-${version}.tar.bz2";
sha256 = "0r8qyp102sq4lw8xhrjhan0dnslhsmxj4zs9jzlw75yagfbqbdl4";
};
enableParallelBuilding = true;
buildInputs = [ cmake pcre zlib python openssl ];
cmakeFlags = [
"--no-warn-unused-cli"
];
meta = with stdenv.lib; {
homepage = http://cppcms.com;
description = "High Performance C++ Web Framework";
platforms = platforms.linux ;
license = licenses.lgpl3;
maintainers = [ maintainers.juliendehos ];
};
}