about summary refs log tree commit diff
path: root/pkgs/tools/admin/swapspace/default.nix
blob: a6082024069992356009a1bbbc0377463c4cde45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 ];
  };
}