about summary refs log tree commit diff
path: root/pkgs/tools/text/justify/default.nix
blob: 1e18e22db8e2501104ad15ac3f49b0a8cd63bde3 (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
31
32
33
{ lib
, stdenv
, fetchFromGitea
, cmake
}:

stdenv.mkDerivation rec {
  pname = "justify";
  version = "unstable-2022-03-19";

  src = fetchFromGitea {
    domain = "tildegit.org";
    owner = "jns";
    repo = "justify";
    rev = "0d397c20ed921c8e091bf18e548d174e15810e62";
    sha256 = "sha256-406OhJt2Ila/LIhfqJXhbFqFxJJiRyMVI4/VK8Y43kc=";
  };

  nativeBuildInputs = [ cmake ];

  installPhase = ''
    install -D justify $out/bin/justify
  '';

  meta = with lib; {
    homepage = "https://tildegit.org/jns/justify";
    description = "Simple text alignment tool that supports left/right/center/fill justify alignment";
    license = licenses.gpl3Only;
    platforms = platforms.unix;
    mainProgram = "justify";
    maintainers = with maintainers; [ xfnw ];
  };
}