summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-18 14:23:58 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-24 16:49:06 -0600
commitc5227f93f36b6852e287ba4a2c6d7d3b8d38ffed (patch)
tree9b5469e515a05f442497472e4cfd47577b8735e3
parent16d22f153637f552b203588477f545df0dd85ee2 (diff)
downloadnixlib-c5227f93f36b6852e287ba4a2c6d7d3b8d38ffed.tar
nixlib-c5227f93f36b6852e287ba4a2c6d7d3b8d38ffed.tar.gz
nixlib-c5227f93f36b6852e287ba4a2c6d7d3b8d38ffed.tar.bz2
nixlib-c5227f93f36b6852e287ba4a2c6d7d3b8d38ffed.tar.lz
nixlib-c5227f93f36b6852e287ba4a2c6d7d3b8d38ffed.tar.xz
nixlib-c5227f93f36b6852e287ba4a2c6d7d3b8d38ffed.tar.zst
nixlib-c5227f93f36b6852e287ba4a2c6d7d3b8d38ffed.zip
Remove kde4.partition-manager
- No maintainer in Nixpkgs
- No upstream activity
- Original source unavailable
-rw-r--r--pkgs/tools/misc/partition-manager/default.nix39
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/tools/misc/partition-manager/default.nix b/pkgs/tools/misc/partition-manager/default.nix
deleted file mode 100644
index 156f03dad876..000000000000
--- a/pkgs/tools/misc/partition-manager/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, cmake, gettext, automoc4, perl
-, parted, libuuid, qt4, kdelibs, kde_baseapps, phonon, libatasmart
-}:
-
-stdenv.mkDerivation rec {
-  name = "partitionmanager-1.0.3_p20120804";
-
-  src = fetchurl {
-    #url = "mirror://sourceforge/partitionman/${name}.tar.bz2";
-    # the upstream version is old and doesn't build
-    url = "http://dev.gentoo.org/~kensington/distfiles/${name}.tar.bz2";
-    sha256 = "1j6zpgj8xs98alzxvcibwch9yj8jsx0s7y864gbdx280jmj8c1np";
-  };
-
-  buildInputs = [
-    pkgconfig cmake gettext automoc4 perl
-    parted libuuid qt4 kdelibs kde_baseapps phonon libatasmart
-  ];
-
-  preConfigure = ''
-    export VERBOSE=1
-    cmakeFlagsArray=($cmakeFlagsArray -DGETTEXT_INCLUDE_DIR=${gettext}/include -DCMAKE_INCLUDE_PATH=${qt4}/include/QtGui )
-  '';
-
-  postInstall = ''
-    set -x
-    rpath=`patchelf --print-rpath $out/bin/partitionmanager-bin`:${qt4}/lib
-    for p in $out/bin/partitionmanager-bin; do
-      patchelf --set-rpath $rpath $p
-    done
-  '';
-
-  meta = {
-    description = "Utility program to help you manage the disk devices";
-    homepage = http://www.kde-apps.org/content/show.php/KDE+Partition+Manager?content=89595; # ?
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.linux;
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b48e53abcad9..ebb2e9b81d18 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -16721,8 +16721,6 @@ with pkgs;
 
         massif-visualizer = callPackage ../development/tools/analysis/massif-visualizer { };
 
-        partitionManager = callPackage ../tools/misc/partition-manager { };
-
         psi = callPackage ../applications/networking/instant-messengers/psi { };
 
         semnotes = callPackage ../applications/misc/semnotes { };