nixpkgs/pkgs/development/libraries/tntnet/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

23 lines
650 B
Nix

{ stdenv, fetchurl, cxxtools, zlib, openssl, zip }:
stdenv.mkDerivation rec {
version = "2.2.1";
name = "tntnet";
src = fetchurl {
url = "http://www.tntnet.org/download/tntnet-${version}.tar.gz";
sha256 = "08bmak9mpbamwwl3h9p8x5qzwqlm9g3jh70y0ml5hk7hiv870cf8";
};
buildInputs = [ cxxtools zlib openssl zip ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://www.tntnet.org/tntnet.html;
description = "Web server which allows users to develop web applications using C++";
platforms = platforms.linux ;
license = licenses.lgpl21;
maintainers = [ maintainers.juliendehos ];
};
}