summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-11-26 13:05:25 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-28 23:48:23 -0800
commit0d66acb5d75fe70c70754df50b9f49228907cdf4 (patch)
tree003823d2dcf4fd5e3f6eb72814db6bdca32c9f2e
parent1222ea8f89fc1060235a763c7e717e3ac0ee6729 (diff)
downloadnixpkgs-0d66acb5d75fe70c70754df50b9f49228907cdf4.tar
nixpkgs-0d66acb5d75fe70c70754df50b9f49228907cdf4.tar.gz
nixpkgs-0d66acb5d75fe70c70754df50b9f49228907cdf4.tar.bz2
nixpkgs-0d66acb5d75fe70c70754df50b9f49228907cdf4.tar.lz
nixpkgs-0d66acb5d75fe70c70754df50b9f49228907cdf4.tar.xz
nixpkgs-0d66acb5d75fe70c70754df50b9f49228907cdf4.tar.zst
nixpkgs-0d66acb5d75fe70c70754df50b9f49228907cdf4.zip
nlopt: 2.6.1 -> 2.7.0
-rw-r--r--pkgs/development/libraries/nlopt/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/nlopt/default.nix b/pkgs/development/libraries/nlopt/default.nix
index e9b89e83907..64eb6d79abd 100644
--- a/pkgs/development/libraries/nlopt/default.nix
+++ b/pkgs/development/libraries/nlopt/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "nlopt";
-  version = "2.6.1";
+  version = "2.7.0";
 
   src = fetchFromGitHub {
     owner = "stevengj";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1k6x14lgyfhfqpbs7xx8mrgklp8l6jkkcs39zgi2sj3kg6n0hdc9";
+    sha256 = "0xm8y9cg5p2vgxbn8wn8gqfpxkbm0m4qsidp0bq1dqs8gvj9017v";
   };
 
   nativeBuildInputs = [ cmake ];