Merge pull request #331642 from TomaSajt/stirling-pdf

stirling-pdf: 0.25.1 -> 0.26.1

authored by Florian and committed by GitHub ecefa343 6d4f2475

+13 -13
+5 -9
pkgs/by-name/st/stirling-pdf/deps.json
··· 636 636 "jar": "sha256-7urpF5FxRKaKdB1MDf9mqlxcX9hVk/8he87T/Iyng7g=", 637 637 "pom": "sha256-1dgfzCiMDYxxHDAgB8raSqmiJu0aES1LqmTLHWMiFws=" 638 638 }, 639 - "commons-io#commons-io/2.15.1": { 640 - "jar": "sha256-pYrxLuG2jP0uuwwnyu8WTwhDgaAOyBpIzCdf1+pU4VQ=", 641 - "pom": "sha256-Fxoa+CtnWetXQLO4gJrKgBE96vEVMDby9ERZAd/T+R0=" 639 + "commons-io#commons-io/2.16.1": { 640 + "jar": "sha256-9B97qs1xaJZEes6XWGIfYsHGsKkdiazuSI2ib8R3yE8=", 641 + "pom": "sha256-V3fSkiUceJXASkxXAVaD7Ds1OhJIbJs+cXjpsLPDj/8=" 642 642 }, 643 643 "commons-logging#commons-logging/1.0.4": { 644 644 "jar": "sha256-6Ur0l0k4TBH1qlDo0PX+Z5vncSlbUgMDONMoQ8mANR4=", ··· 921 921 "org/apache/commons#commons-parent/64": { 922 922 "pom": "sha256-bxljiZToNXtO1zRpb5kgV++q+hI1ZzmYEzKZeY4szds=" 923 923 }, 924 - "org/apache/commons#commons-parent/65": { 925 - "pom": "sha256-bPNJX8LmrJE6K38uA/tZCPs/Ip+wbTNY3EVnjVrz424=" 924 + "org/apache/commons#commons-parent/69": { 925 + "pom": "sha256-1Q2pw5vcqCPWGNG0oDtz8ZZJf8uGFv0NpyfIYjWSqbs=" 926 926 }, 927 927 "org/apache/commons#commons-text/1.11.0": { 928 928 "jar": "sha256-Ks8woHCxkWPVpIDq5BGigTQehwAg41NMbV1MhHJznjA=", ··· 1295 1295 "org/junit#junit-bom/5.10.0": { 1296 1296 "module": "sha256-6z7mEnYIAQaUqJgFbnQH0RcpYAOrpfXbgB30MLmIf88=", 1297 1297 "pom": "sha256-4AbdiJT5/Ht1/DK7Ev5e2L5lZn1bRU+Z4uC4xbuNMLM=" 1298 - }, 1299 - "org/junit#junit-bom/5.10.1": { 1300 - "module": "sha256-IbCvz//i7LN3D16wCuehn+rulOdx+jkYFzhQ2ueAZ7c=", 1301 - "pom": "sha256-IcSwKG9LIAaVd/9LIJeKhcEArIpGtvHIZy+6qzN7w/I=" 1302 1298 }, 1303 1299 "org/junit#junit-bom/5.10.2": { 1304 1300 "module": "sha256-3iOxFLPkEZqP5usXvtWjhSgWaYus5nBxV51tkn67CAo=",
+8 -4
pkgs/by-name/st/stirling-pdf/package.nix
··· 12 12 in 13 13 stdenv.mkDerivation (finalAttrs: { 14 14 pname = "stirling-pdf"; 15 - version = "0.25.1"; 15 + version = "0.26.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "Stirling-Tools"; 19 19 repo = "Stirling-PDF"; 20 20 rev = "v${finalAttrs.version}"; 21 - hash = "sha256-DgQLn4+uBAF8/c3G6ckkq/0gtJEE9GPHd1d/xB6omlA="; 21 + hash = "sha256-msxP2n8Varc7/h9RVwYRBuD253JZu6/p7zQC1lmNmqc="; 22 22 }; 23 23 24 24 patches = [ ··· 35 35 36 36 # disable spotless because it tries to fetch files not in deps.json 37 37 # and also because it slows down the build process 38 - gradleFlags = [ "-x" "spotlessApply" ]; 38 + gradleFlags = [ 39 + "-x" 40 + "spotlessApply" 41 + ]; 39 42 40 43 doCheck = true; 41 44 42 45 nativeBuildInputs = [ 43 46 gradle 47 + gradle.jdk # one of the tests also require that the `java` command is available on the command line 44 48 makeWrapper 45 49 ]; 46 50 ··· 55 59 ''; 56 60 57 61 meta = { 58 - changelog = "https://github.com/Stirling-Tools/Stirling-PDF/releases/tag/${finalAttrs.src.rev}"; 62 + changelog = "https://github.com/Stirling-Tools/Stirling-PDF/releases/tag/v${finalAttrs.version}"; 59 63 description = "Locally hosted web application that allows you to perform various operations on PDF files"; 60 64 homepage = "https://github.com/Stirling-Tools/Stirling-PDF"; 61 65 license = lib.licenses.gpl3Only;