nixpkgs/pkgs/development/libraries/cppunit/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

18 lines
463 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "cppunit-${version}";
version = "1.14.0";
src = fetchurl {
url = "https://dev-www.libreoffice.org/src/${name}.tar.gz";
sha256 = "1027cyfx5gsjkdkaf6c2wnjh68882grw8n672018cj3vs9lrhmix";
};
meta = {
homepage = https://freedesktop.org/wiki/Software/cppunit/;
description = "C++ unit testing framework";
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
};
}