lol

Remove cryopid

No longer builds / exists

-41
-39
pkgs/os-specific/linux/cryopid/default.nix
··· 1 - {stdenv, fetchurl, zlibStatic}: 2 - 3 - let 4 - 5 - pname = "cryopid"; 6 - version = "20090908"; 7 - revision = "7da69201d50e"; 8 - 9 - in 10 - 11 - stdenv.mkDerivation rec { 12 - name = "${pname}-${version}"; 13 - 14 - src = fetchurl { 15 - url = "https://sharesource.org/hg/cryopid/archive/${revision}.tar.bz2"; 16 - sha256 = "908a4b1cb26322ee25afe13ff59e0d86f669538cb4583766b15ca79fda6c69ca"; 17 - }; 18 - 19 - buildInputs = [ zlibStatic ]; 20 - 21 - preBuild = "cd src"; 22 - 23 - installPhase = "mkdir -p $out/bin; cp cryopid $out/bin"; 24 - 25 - meta = { 26 - description = "A process freezer for Linux"; 27 - longDescription = '' 28 - CryoPID allows you to capture the state of a running process in Linux 29 - and save it to a file. This file can then be used to resume the process 30 - later on, either after a reboot or even on another machines. 31 - ''; 32 - homepage = http://sharesource.org/project/cryopid; 33 - license = '' 34 - Modified BSD license (without advertising clause). CryoPID ships with 35 - and links against the dietlibc library, which is distributed under the 36 - GNU General Public Licence, version 2. 37 - ''; 38 - }; 39 - }
-2
pkgs/top-level/all-packages.nix
··· 10566 10566 10567 10567 cpufrequtils = callPackage ../os-specific/linux/cpufrequtils { }; 10568 10568 10569 - cryopid = callPackage ../os-specific/linux/cryopid { }; 10570 - 10571 10569 criu = callPackage ../os-specific/linux/criu { }; 10572 10570 10573 10571 cryptsetup = callPackage ../os-specific/linux/cryptsetup { };