Merge pull request #145494 from DarkOnion0/master

drawio: 14.5.1 -> 15.7.3

authored by

ajs124 and committed by
GitHub
c696ab65 b5a79426

+10 -3
+7
maintainers/maintainer-list.nix
··· 2537 2537 githubId = 86075850; 2538 2538 name = "Danil Danevich"; 2539 2539 }; 2540 + darkonion0 = { 2541 + name = "Alexandre Peruggia"; 2542 + email = "darkgenius1@protonmail.com"; 2543 + matrix = "@alexoo:matrix.org"; 2544 + github = "DarkOnion0"; 2545 + githubId = 68606322; 2546 + }; 2540 2547 das-g = { 2541 2548 email = "nixpkgs@raphael.dasgupta.ch"; 2542 2549 github = "das-g";
+3 -3
pkgs/applications/graphics/drawio/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "drawio"; 14 - version = "14.5.1"; 14 + version = "15.7.3"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/jgraph/drawio-desktop/releases/download/v${version}/drawio-x86_64-${version}.rpm"; 18 - hash = "sha256-ZrEoeeEhHQOLm/L3KA43Ru5fruIPK35CCUsllwpPB58="; 18 + sha256 = "3565bcceccb57daee222270164e85b696b8d261ab88b65699912da51946a1c36"; 19 19 }; 20 20 21 21 nativeBuildInputs = [ ··· 91 91 homepage = "https://about.draw.io/"; 92 92 license = licenses.asl20; 93 93 changelog = "https://github.com/jgraph/drawio-desktop/releases/tag/v${version}"; 94 - maintainers = with maintainers; [ ]; 94 + maintainers = with maintainers; [ darkonion0 ]; 95 95 platforms = [ "x86_64-linux" ]; 96 96 }; 97 97 }