justify: init at unstable-2022-03-19

main
xfnw 2 years ago
parent 8bc584626b
commit 9980495d9c
  1. 33
      pkgs/tools/text/justify/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,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 ];
};
}

@ -7022,6 +7022,8 @@ with pkgs;
jupyter-kernel = callPackage ../applications/editors/jupyter/kernel.nix { };
justify = callPackage ../tools/text/justify { };
jwhois = callPackage ../tools/networking/jwhois { };
k2pdfopt = callPackage ../applications/misc/k2pdfopt { };

Loading…
Cancel
Save