about summary refs log tree commit diff
path: root/pkgs/development/libraries/science
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-02-17 15:12:28 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2020-02-17 15:12:28 +0100
commitec1184f4616b0cf4ccf651ccac41f8ceb82dd1bb (patch)
treef372e390ea1e08eb46620c3744a6d260e8b51197 /pkgs/development/libraries/science
parent9ed0635a3078e474683af6ad1133885dad03627a (diff)
parent3285f0f2ff36aea7d5e87520a3e9ef66c44f87b8 (diff)
downloadnixlib-ec1184f4616b0cf4ccf651ccac41f8ceb82dd1bb.tar
nixlib-ec1184f4616b0cf4ccf651ccac41f8ceb82dd1bb.tar.gz
nixlib-ec1184f4616b0cf4ccf651ccac41f8ceb82dd1bb.tar.bz2
nixlib-ec1184f4616b0cf4ccf651ccac41f8ceb82dd1bb.tar.lz
nixlib-ec1184f4616b0cf4ccf651ccac41f8ceb82dd1bb.tar.xz
nixlib-ec1184f4616b0cf4ccf651ccac41f8ceb82dd1bb.tar.zst
nixlib-ec1184f4616b0cf4ccf651ccac41f8ceb82dd1bb.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/libraries/science')
-rw-r--r--pkgs/development/libraries/science/math/ecos/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/science/math/ecos/default.nix b/pkgs/development/libraries/science/math/ecos/default.nix
index 77973a954494..2ba69a34a4a7 100644
--- a/pkgs/development/libraries/science/math/ecos/default.nix
+++ b/pkgs/development/libraries/science/math/ecos/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "ecos";
-  version = "2.0.6";
+  version = "2.0.7";
 
   src = fetchFromGitHub {
     owner = "embotech";
     repo = "ecos";
-    rev = "v${version}";
-    sha256 = "11v958j66wq30gxpjpkgl7n3rvla845lygz8fl39pgf1vk9sdyc7";
+    rev = version;
+    sha256 = "1hsndim5kjvcwk5svqa4igawzahj982180xj1d7yd0dbjlgxc7w7";
   };
 
   buildPhase = ''
@@ -29,9 +29,10 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A lightweight conic solver for second-order cone programming";
-    homepage = https://www.embotech.com/ECOS;
+    homepage = "https://www.embotech.com/ECOS";
+    downloadPage = "https://github.com/embotech/ecos/releases";
     license = licenses.gpl3;
     platforms = platforms.all;
-    maintainers = [ maintainers.bhipple ];
+    maintainers = with maintainers; [ bhipple ];
   };
 }