Unverified Commit 3bd63480 authored by TomaSajt's avatar TomaSajt
Browse files

mathmod: 11.1-unstable-2024-01-26 -> 12.0

parent 5fd94c39
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -5,15 +5,15 @@
  libsForQt5,
}:

stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
  pname = "mathmod";
  version = "11.1-unstable-2024-01-26";
  version = "12.0";

  src = fetchFromGitHub {
    owner = "parisolab";
    repo = "mathmod";
    rev = "24d03a04c17363520ae7cf077e72a7b8684eb6fd";
    hash = "sha256-HiqHssPGqYEVZWchZRj4rFPc+xNVZk1ryl5qvFC2BmQ=";
    rev = "refs/tags/${finalAttrs.version}";
    hash = "sha256-h1iI7bheJVfE2+0m6Yk7QNCkl9Vye97tqb/WkQExVcQ=";
  };

  patches = [ ./fix-paths.patch ];
@@ -28,6 +28,7 @@ stdenv.mkDerivation {
  ];

  meta = {
    changelog = "https://github.com/parisolab/mathmod/releases/tag/${finalAttrs.version}";
    description = "Mathematical modelling software";
    homepage = "https://github.com/parisolab/mathmod";
    license = lib.licenses.gpl2Plus;
@@ -35,4 +36,4 @@ stdenv.mkDerivation {
    maintainers = with lib.maintainers; [ tomasajt ];
    platforms = lib.platforms.unix;
  };
}
})