summary refs log tree commit diff
path: root/pkgs/development/libraries/libdivecomputer
diff options
context:
space:
mode:
authorPeter Hoeg <peter@speartail.com>2017-02-11 22:48:18 +0800
committerJoachim F <joachifm@users.noreply.github.com>2017-02-11 15:48:18 +0100
commit9550686be85b70be95967fbfcb4293ad3f44206b (patch)
treeed56a8332a5a7ab78eb3cc2b76666fbac373d029 /pkgs/development/libraries/libdivecomputer
parente2834ca6113acc263ea7ed857fc1cdcf509510e2 (diff)
downloadnixpkgs-9550686be85b70be95967fbfcb4293ad3f44206b.tar
nixpkgs-9550686be85b70be95967fbfcb4293ad3f44206b.tar.gz
nixpkgs-9550686be85b70be95967fbfcb4293ad3f44206b.tar.bz2
nixpkgs-9550686be85b70be95967fbfcb4293ad3f44206b.tar.lz
nixpkgs-9550686be85b70be95967fbfcb4293ad3f44206b.tar.xz
nixpkgs-9550686be85b70be95967fbfcb4293ad3f44206b.tar.zst
nixpkgs-9550686be85b70be95967fbfcb4293ad3f44206b.zip
subsurface: 4.5.97 -> 4.6.0 (#22615)
We do a few more things:

 - libmarble and libdivecomputer with the subsurface patches have both been
   inlined for 2 reasons:
   a) nobody else is using these forks
   b) they need to be updated in lockstep with subsurface

 - instead of building libmarble against qtquick1, we now build using
   qtquickcontrols (qtquick2)

 - getting rid of qtquick1 also allows us to use the default qt (currently 5.6)

 - we get rid of some hacks to deal with library dependencies

 - instead of manually overriding various phases, we simply use cmakeFlags to
   pass proper parameters
Diffstat (limited to 'pkgs/development/libraries/libdivecomputer')
-rw-r--r--pkgs/development/libraries/libdivecomputer/subsurface.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/development/libraries/libdivecomputer/subsurface.nix b/pkgs/development/libraries/libdivecomputer/subsurface.nix
deleted file mode 100644
index 5840ea2ef85..00000000000
--- a/pkgs/development/libraries/libdivecomputer/subsurface.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchgit, autoreconfHook }:
-
-stdenv.mkDerivation rec {
-  name = "libdivecomputer-${version}";
-  version = "ssrf-0.5.0";
-
-  src = fetchgit {
-    url = "git://subsurface-divelog.org/libdc";
-    rev = "534dd2f34b8271b2a1cac0e3151bfdc81da40e47";
-    branchName = "Subsurface-branch";
-    sha256 = "0iw9pczmwqlfjlgrik79b2pd4lmipxhjzj60ysk8qzl3axadjycp";
-  };
-
-  nativeBuildInputs = [ autoreconfHook ];
-
-  enableParallelBuilding = true;
-
-  meta = with stdenv.lib; {
-    homepage = http://www.libdivecomputer.org;
-    description = "A cross-platform and open source library for communication with dive computers from various manufacturers";
-    maintainers = [ maintainers.mguentner ];
-    license = licenses.lgpl21;
-    platforms = platforms.all;
-  };
-}