galaxis: 1.10 -> 1.11

Now it uses Asciidoctor!

Co-authored-by: Keto <therealketo@gmail.com>
This commit is contained in:
Anderson Torres 2024-03-03 09:39:26 -03:00
parent f36dd24429
commit a9909db751

View File

@ -1,27 +1,25 @@
{ lib
, docbook_xsl
, asciidoctor
, fetchFromGitLab
, ncurses
, stdenv
, xmlto
}:
stdenv.mkDerivation (finalAttrs: {
pname = "galaxis";
version = "1.10";
version = "1.11";
src = fetchFromGitLab {
owner = "esr";
repo = "galaxis";
rev = finalAttrs.version;
hash = "sha256-l49JEFAyiNvQJ1qimXzd5WL5jFHaFsu7RJe8Xfp3uWw=";
hash = "sha256-fSzifGoSdWyFGt99slzAsqCMDoeLbBqQGXujX8QAfGc=";
};
outputs = [ "out" "man" ];
nativeBuildInputs = [
docbook_xsl
xmlto
asciidoctor
];
buildInputs = [