tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
cppunit: 1.14.0
Michael Raskin
8 years ago
02f439d0
44db65d6
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
cppunit
default.nix
+6
-5
pkgs/development/libraries/cppunit/default.nix
···
1
1
{stdenv, fetchurl}:
2
2
3
3
-
stdenv.mkDerivation {
4
4
-
name = "cppunit-1.13.2";
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "cppunit-${version}";
5
5
+
version = "1.14.0";
5
6
6
7
src = fetchurl {
7
7
-
url = http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz;
8
8
-
sha256 = "17s2kzmkw3kfjhpp72rfppyd7syr7bdq5s69syj2nvrlwd3d4irz";
8
8
+
url = "http://dev-www.libreoffice.org/src/${name}.tar.gz";
9
9
+
sha256 = "1027cyfx5gsjkdkaf6c2wnjh68882grw8n672018cj3vs9lrhmix";
9
10
};
10
11
11
12
meta = {
12
12
-
homepage = https://sourceforge.net/apps/mediawiki/cppunit/;
13
13
+
homepage = https://freedesktop.org/wiki/Software/cppunit/;
13
14
description = "C++ unit testing framework";
14
15
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
15
16
};