summary refs log tree commit diff
path: root/pkgs/applications/graphics/antimony/default.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2019-11-03 13:15:02 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2019-11-03 13:15:02 +0100
commit4b628109162e2e947ec80201c9349804ce8fb328 (patch)
tree832a441a00d8debdb662b88c8587ebc72529f146 /pkgs/applications/graphics/antimony/default.nix
parenta4a032376f45f47dd5713f20d6e6ddf3bcb7d329 (diff)
downloadnixpkgs-4b628109162e2e947ec80201c9349804ce8fb328.tar
nixpkgs-4b628109162e2e947ec80201c9349804ce8fb328.tar.gz
nixpkgs-4b628109162e2e947ec80201c9349804ce8fb328.tar.bz2
nixpkgs-4b628109162e2e947ec80201c9349804ce8fb328.tar.lz
nixpkgs-4b628109162e2e947ec80201c9349804ce8fb328.tar.xz
nixpkgs-4b628109162e2e947ec80201c9349804ce8fb328.tar.zst
nixpkgs-4b628109162e2e947ec80201c9349804ce8fb328.zip
antimony: 2018-10-20 -> 2019-10-30
Diffstat (limited to 'pkgs/applications/graphics/antimony/default.nix')
-rw-r--r--pkgs/applications/graphics/antimony/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix
index 3c39aadda98..04e64b76d3f 100644
--- a/pkgs/applications/graphics/antimony/default.nix
+++ b/pkgs/applications/graphics/antimony/default.nix
@@ -1,22 +1,22 @@
 { stdenv, fetchFromGitHub, libpng, python3
-, libGLU_combined, qtbase, ncurses
+, libGLU_combined, qtbase, wrapQtAppsHook, ncurses
 , cmake, flex, lemon
 }:
 
 let
-  gitRev    = "c0038e3ea82fec6119de364bcbc3370955ed46a2";
+  gitRev    = "6dfe6822e0279a4cc2f1c60e85b42212627285fe";
   gitBranch = "develop";
   gitTag    = "0.9.3";
 in
   stdenv.mkDerivation {
     pname = "antimony";
-    version = "2018-10-20";
+    version = "2019-10-30";
 
     src = fetchFromGitHub {
       owner  = "mkeeter";
       repo   = "antimony";
       rev    = gitRev;
-      sha256 = "01cjcjppbb0gvh6npcsaidzpfcfzrqhhi07z4v0jkfyi0fl125v4";
+      sha256 = "07zlkwlk79czq8dy85b6n3ds3g36l8qy4ix849ady6ia3gm8981j";
     };
 
     patches = [ ./paths-fix.patch ];
@@ -29,7 +29,8 @@ in
 
     buildInputs = [
       libpng python3 python3.pkgs.boost
-      libGLU_combined qtbase ncurses
+      libGLU_combined qtbase wrapQtAppsHook
+      ncurses
     ];
 
     nativeBuildInputs = [ cmake flex lemon ];
@@ -44,7 +45,7 @@ in
 
     meta = with stdenv.lib; {
       description = "A computer-aided design (CAD) tool from a parallel universe";
-      homepage    = "https://github.com/mkeeter/antimony";
+      homepage    = https://github.com/mkeeter/antimony;
       license     = licenses.mit;
       maintainers = with maintainers; [ rnhmjoj ];
       platforms   = platforms.linux;