lol

src: 1.33 -> 1.41

emaryn f43f0265 35f9e775

+8 -6
+8 -6
pkgs/by-name/sr/src/package.nix
··· 7 7 makeWrapper, 8 8 python3, 9 9 rcs, 10 + asciidoctor, 10 11 }: 11 12 12 13 stdenv.mkDerivation (finalAttrs: { 13 14 pname = "src"; 14 - version = "1.33"; 15 + version = "1.41"; 15 16 16 17 src = fetchFromGitLab { 17 18 owner = "esr"; 18 19 repo = "src"; 19 - rev = finalAttrs.version; 20 - hash = "sha256-xyKJcM9dWsFGhe+ISR6S1f67jkYlS9heZe0TFXY8DgQ="; 20 + tag = finalAttrs.version; 21 + hash = "sha256-i5i6+RmQ/70ul2r/NC6xv/8sUP3+8mkQIDgyC1NrSrI="; 21 22 }; 22 23 23 24 nativeBuildInputs = [ 24 25 asciidoc 26 + asciidoctor 25 27 makeWrapper 26 28 ]; 27 29 ··· 46 48 --suffix PATH ":" "${rcs}/bin" 47 49 ''; 48 50 49 - meta = with lib; { 51 + meta = { 50 52 homepage = "http://www.catb.org/esr/src/"; 51 53 description = "Simple single-file revision control"; 52 54 longDescription = '' ··· 58 60 anywhere. 59 61 ''; 60 62 changelog = "https://gitlab.com/esr/src/-/raw/${finalAttrs.version}/NEWS.adoc"; 61 - license = licenses.bsd2; 63 + license = lib.licenses.bsd2; 62 64 mainProgram = "src"; 63 - maintainers = with maintainers; [ ]; 65 + maintainers = with lib.maintainers; [ ]; 64 66 inherit (python3.meta) platforms; 65 67 }; 66 68 })