forked from mirrors/nixpkgs
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
17 lines
437 B
Nix
17 lines
437 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cppunit-1.13.2";
|
|
|
|
src = fetchurl {
|
|
url = http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz;
|
|
sha256 = "17s2kzmkw3kfjhpp72rfppyd7syr7bdq5s69syj2nvrlwd3d4irz";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://sourceforge.net/apps/mediawiki/cppunit/;
|
|
description = "C++ unit testing framework";
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
};
|
|
}
|