swapspace: init at 1.17

This commit is contained in:
misuzu 2022-09-14 22:31:49 +03:00
parent 5f326e2a40
commit be66f80e87
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, installShellFiles }:
stdenv.mkDerivation rec {
pname = "swapspace";
version = "1.17";
src = fetchFromGitHub {
owner = "Tookmund";
repo = "Swapspace";
rev = "v${version}";
sha256 = "sha256-v1kSkepZm6+S4wf86ETgQzEAZBLJ2jQBgCRdF7yvuxs=";
};
nativeBuildInputs = [
autoreconfHook
installShellFiles
];
postInstall = ''
installManPage doc/swapspace.8
'';
meta = with lib; {
description = "Dynamic swap manager for Linux";
homepage = "https://github.com/Tookmund/Swapspace";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ misuzu ];
};
}

View File

@ -4670,6 +4670,8 @@ with pkgs;
swappy = callPackage ../applications/misc/swappy { gtk = gtk3; };
swapspace = callPackage ../tools/admin/swapspace { };
swego = callPackage ../servers/swego { };
sydbox = callPackage ../os-specific/linux/sydbox { };