summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-09-16 20:35:02 +0200
committerMichael Raskin <7c6f434c@mail.ru>2017-09-17 09:58:34 +0200
commit02f439d062d05785d7bdf47c8a275b6bfb604ae1 (patch)
tree703a6524bc27c18d459147ee3a09a7569323f03b /pkgs/development/libraries
parent44db65d61c0748cf698d9db8277dc19ad1f46c09 (diff)
downloadnixpkgs-02f439d062d05785d7bdf47c8a275b6bfb604ae1.tar
nixpkgs-02f439d062d05785d7bdf47c8a275b6bfb604ae1.tar.gz
nixpkgs-02f439d062d05785d7bdf47c8a275b6bfb604ae1.tar.bz2
nixpkgs-02f439d062d05785d7bdf47c8a275b6bfb604ae1.tar.lz
nixpkgs-02f439d062d05785d7bdf47c8a275b6bfb604ae1.tar.xz
nixpkgs-02f439d062d05785d7bdf47c8a275b6bfb604ae1.tar.zst
nixpkgs-02f439d062d05785d7bdf47c8a275b6bfb604ae1.zip
cppunit: 1.14.0
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/cppunit/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/cppunit/default.nix b/pkgs/development/libraries/cppunit/default.nix
index 8d2c4bb7dd3..7b48ffcaccf 100644
--- a/pkgs/development/libraries/cppunit/default.nix
+++ b/pkgs/development/libraries/cppunit/default.nix
@@ -1,15 +1,16 @@
 {stdenv, fetchurl}:
 
-stdenv.mkDerivation {
-  name = "cppunit-1.13.2";
+stdenv.mkDerivation rec {
+  name = "cppunit-${version}";
+  version = "1.14.0";
 
   src = fetchurl {
-    url = http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz;
-    sha256 = "17s2kzmkw3kfjhpp72rfppyd7syr7bdq5s69syj2nvrlwd3d4irz";
+    url = "http://dev-www.libreoffice.org/src/${name}.tar.gz";
+    sha256 = "1027cyfx5gsjkdkaf6c2wnjh68882grw8n672018cj3vs9lrhmix";
   };
 
   meta = {
-    homepage = https://sourceforge.net/apps/mediawiki/cppunit/;
+    homepage = https://freedesktop.org/wiki/Software/cppunit/;
     description = "C++ unit testing framework";
     platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
   };