src: 1.32 -> 1.33

This commit is contained in:
Anderson Torres 2024-01-03 22:56:36 -03:00
parent 4a42a2bafc
commit 0a36bc913b

View File

@ -1,5 +1,6 @@
{ lib
, stdenv
, asciidoc
, fetchFromGitLab
, git
, makeWrapper
@ -9,16 +10,17 @@
stdenv.mkDerivation (finalAttrs: {
pname = "src";
version = "1.32";
version = "1.33";
src = fetchFromGitLab {
owner = "esr";
repo = "src";
rev = finalAttrs.version;
hash = "sha256-gVB0BdnrJ1ew49t9j5zlLpBC4WP9xxYlU26ilOWtq08=";
hash = "sha256-xyKJcM9dWsFGhe+ISR6S1f67jkYlS9heZe0TFXY8DgQ=";
};
nativeBuildInputs = [
asciidoc
makeWrapper
];
@ -28,6 +30,8 @@ stdenv.mkDerivation (finalAttrs: {
rcs
];
strictDeps = true;
preConfigure = ''
patchShebangs .
'';