mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:28:51 +00:00
09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
17 lines
438 B
Nix
17 lines
438 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 = https://sourceforge.net/apps/mediawiki/cppunit/;
|
|
description = "C++ unit testing framework";
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
};
|
|
}
|