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

20 lines
558 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "3.8";
name = "cpputest-${version}";
src = fetchurl {
url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${name}.tar.gz";
sha256 = "0mk48xd3klyqi7wf3f4wn4zqxxzmvrhhl32r25jzrixzl72wq7f8";
};
meta = {
homepage = http://cpputest.github.io/;
description = "Unit testing and mocking framework for C/C++";
platforms = stdenv.lib.platforms.linux ;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.juliendehos ];
};
}