summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-03-18 17:17:18 +0200
committerGitHub <noreply@github.com>2023-03-18 17:17:18 +0200
commitf15cf7e6af135734eafeaf45fbe61124846a43cb (patch)
tree4ff99b14664c8e0d00ac597a6438c94ae390d98f
parentMerge pull request #190862 from zhaofengli/xpra-uinput-conf (diff)
parentnest: specify license (diff)
downloadnixpkgs-f15cf7e6af135734eafeaf45fbe61124846a43cb.tar.gz
Merge pull request #221809 from wegank/nest-bump
nest: 3.3 -> 3.4
-rw-r--r--pkgs/applications/science/biology/nest/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/science/biology/nest/default.nix b/pkgs/applications/science/biology/nest/default.nix
index f26f06a1f298..912fecff177b 100644
--- a/pkgs/applications/science/biology/nest/default.nix
+++ b/pkgs/applications/science/biology/nest/default.nix
@@ -20,13 +20,13 @@
stdenv.mkDerivation rec {
pname = "nest";
- version = "3.3";
+ version = "3.4";
src = fetchFromGitHub {
owner = "nest";
repo = "nest-simulator";
rev = "v${version}";
- sha256 = "sha256-wmn5LOOHlSuyPdV6O6v7j10dxdcvqpym6MfveZdL+dU=";
+ hash = "sha256-+wjsZxW2l0WGyGTm/6vyzPEeqCfyxJml9oP/zn6W1L0=";
};
postPatch = ''
@@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
postInstall = ''
# Alternative to autoPatchElf, moves libraries where
# Nest expects them to be
- find $out/lib/nest -type f -exec ln -s {} $out/lib \;
+ find $out/lib/nest -exec ln -s {} $out/lib \;
'';
passthru.tests.version = testers.testVersion {
@@ -78,7 +78,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "NEST is a command line tool for simulating neural networks";
homepage = "https://www.nest-simulator.org/";
- license = licenses.gpl2;
+ changelog = "https://github.com/nest/nest-simulator/releases/tag/v${version}";
+ license = licenses.gpl2Plus;
maintainers = with maintainers; [ jiegec davidcromp ];
platforms = platforms.unix;
};