about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2016-11-03 21:43:17 -0400
committerTim Steinbach <tim@nequissimus.com>2016-11-03 21:43:17 -0400
commit20c29806404679faaeb9f77520ea5cdf46c50f1c (patch)
tree0848f6e390e2115b15af0f1b3435386cb294dab0
parentfd8d9098cbb2b9d6d2de4a3eac29edc6599c34f6 (diff)
Remove cryopid
No longer builds / exists
-rw-r--r--pkgs/os-specific/linux/cryopid/default.nix39
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/os-specific/linux/cryopid/default.nix b/pkgs/os-specific/linux/cryopid/default.nix
deleted file mode 100644
index 0cb64bcc9753e..0000000000000
--- a/pkgs/os-specific/linux/cryopid/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{stdenv, fetchurl, zlibStatic}:
-
-let
-
-  pname = "cryopid";
-  version = "20090908";
-  revision = "7da69201d50e";
-
-in
-
-stdenv.mkDerivation rec {
-  name = "${pname}-${version}";
-
-  src = fetchurl {
-    url = "https://sharesource.org/hg/cryopid/archive/${revision}.tar.bz2";
-    sha256 = "908a4b1cb26322ee25afe13ff59e0d86f669538cb4583766b15ca79fda6c69ca";
-  };
-
-  buildInputs = [ zlibStatic ];
-
-  preBuild = "cd src";
-
-  installPhase = "mkdir -p $out/bin; cp cryopid $out/bin";
-
-  meta = {
-    description = "A process freezer for Linux";
-    longDescription = ''
-      CryoPID allows you to capture the state of a running process in Linux
-      and save it to a file.  This file can then be used to resume the process
-      later on, either after a reboot or even on another machines.
-    '';
-    homepage = http://sharesource.org/project/cryopid;
-    license = ''
-      Modified BSD license (without advertising clause).  CryoPID ships with
-      and links against the dietlibc library, which is distributed under the
-      GNU General Public Licence, version 2.
-    '';
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 2651abd996948..8b7a1afbea571 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -10566,8 +10566,6 @@ in
 
   cpufrequtils = callPackage ../os-specific/linux/cpufrequtils { };
 
-  cryopid = callPackage ../os-specific/linux/cryopid { };
-
   criu = callPackage ../os-specific/linux/criu { };
 
   cryptsetup = callPackage ../os-specific/linux/cryptsetup { };