summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJoerg Thalheim <joerg@thalheim.io>2017-12-01 20:56:15 +0000
committerJoerg Thalheim <joerg@thalheim.io>2017-12-01 20:56:51 +0000
commit5da0dffef7181543117cda612981dfe7a67c9464 (patch)
treec635a101c24286c496983b1eb3328ca454c2109a /pkgs/development
parentfdb8dea0c6440dfa8c6ffa6203ca2a6953fc2f6b (diff)
downloadnixpkgs-5da0dffef7181543117cda612981dfe7a67c9464.tar
nixpkgs-5da0dffef7181543117cda612981dfe7a67c9464.tar.gz
nixpkgs-5da0dffef7181543117cda612981dfe7a67c9464.tar.bz2
nixpkgs-5da0dffef7181543117cda612981dfe7a67c9464.tar.lz
nixpkgs-5da0dffef7181543117cda612981dfe7a67c9464.tar.xz
nixpkgs-5da0dffef7181543117cda612981dfe7a67c9464.tar.zst
nixpkgs-5da0dffef7181543117cda612981dfe7a67c9464.zip
gdbgui: 0.9.0.1 -> 0.9.1.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/gdbgui/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/gdbgui/default.nix b/pkgs/development/tools/misc/gdbgui/default.nix
index 0e6cba37cfc..3562af7a6b8 100644
--- a/pkgs/development/tools/misc/gdbgui/default.nix
+++ b/pkgs/development/tools/misc/gdbgui/default.nix
@@ -5,16 +5,20 @@ in
 python27Packages.buildPythonApplication rec {
     name = "${pname}-${version}";
     pname = "gdbgui";
-    version = "0.9.0.1";
+    version = "0.9.1.0";
 
     buildInputs = [ gdb ];
     propagatedBuildInputs = builtins.attrValues deps.packages;
 
     src = python27Packages.fetchPypi {
       inherit pname version;
-      sha256 = "1gjc7dycrc4zafhrd9yib7qnh4agh7cpa6rlw4p5405rlmwmsbj3";
+      sha256 = "0ybgkk4h9zwhbx5d0j0fmfzxxgg8f6apm8v7djavm0ldpr6f5z26";
     };
 
+    postPatch = ''
+      echo ${version} > gdbgui/VERSION.txt
+    '';
+
     postInstall = ''
       wrapProgram $out/bin/gdbgui \
                   --prefix PATH : ${stdenv.lib.makeBinPath [ gdb ]}