Merge pull request #191225 from misuzu/swapspace-init

swapspace: init at 1.17
This commit is contained in:
Bobby Rong 2022-09-16 14:03:10 +08:00 committed by GitHub
commit 44ea61d940
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -4681,6 +4681,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 { };