mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f5fa5fa4d6
* 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
29 lines
666 B
Nix
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 ];
|
|
};
|
|
}
|
|
|