Remove cryopid

No longer builds / exists
This commit is contained in:
Tim Steinbach 2016-11-03 21:43:17 -04:00
parent fd8d9098cb
commit 20c2980640
No known key found for this signature in database
GPG Key ID: 83FF2ACAEB6C2D24
2 changed files with 0 additions and 41 deletions

View File

@ -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.
'';
};
}

View File

@ -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 { };