multimarkdown: 6.6.0 -> 6.7.0

Diff: https://github.com/fletcher/MultiMarkdown-6/compare/6.6.0...6.7.0

emaryn ce8c8fea 50dd5a53

+9 -16
+9 -16
pkgs/by-name/mu/multimarkdown/package.nix
··· 7 7 pkg-config, 8 8 }: 9 9 10 - stdenv.mkDerivation rec { 10 + stdenv.mkDerivation (finalAttrs: { 11 11 pname = "multimarkdown"; 12 - version = "6.6.0"; 12 + version = "6.7.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "fletcher"; 16 16 repo = "MultiMarkdown-6"; 17 - rev = version; 18 - hash = "sha256-emJbY0wucoc/GdjlILoeqjwuwuPpTjXTqZN0gUKOyLg="; 17 + tag = finalAttrs.version; 18 + hash = "sha256-b6yCn0NFpONI7WwfjDOc0d2nCKMIiUXi+rsnytiNc0Q="; 19 19 }; 20 20 21 21 postPatch = '' 22 22 patchShebangs tools/enumsToPerl.pl 23 23 ''; 24 24 25 - postInstall = '' 26 - # Move files from $out/ to sub directories to prevent conflicts 27 - # with other packages: 28 - mkdir -p $out/share/doc/multimarkdown/ 29 - mv $out/LICENSE.txt $out/README.txt $out/share/doc/multimarkdown/ 30 - ''; 31 - 32 25 nativeBuildInputs = [ 33 26 cmake 34 27 perl 35 28 pkg-config 36 29 ]; 37 30 38 - meta = with lib; { 31 + meta = { 39 32 homepage = "https://fletcher.github.io/MultiMarkdown-6/introduction.html"; 40 33 description = "Derivative of Markdown that adds new syntax features"; 41 34 longDescription = '' ··· 59 52 - glossary entries (LaTeX only) 60 53 - document metadata (e.g. title, author, date, etc.) 61 54 ''; 62 - license = with licenses; [ mit ]; 63 - platforms = platforms.all; 64 - maintainers = with maintainers; [ ]; 55 + license = with lib.licenses; [ mit ]; 56 + platforms = lib.platforms.all; 57 + maintainers = with lib.maintainers; [ ]; 65 58 }; 66 - } 59 + })