Commit 66182ca7 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by Emery Hemingway
Browse files

lagrange: 1.17.2 → 1.17.3

parent 4c53940b
Loading
Loading
Loading
Loading
+2 −11
Original line number Diff line number Diff line
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, nix-update-script
, cmake
, pkg-config
@@ -18,23 +17,15 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "lagrange";
  version = "1.17.2";
  version = "1.17.3";

  src = fetchFromGitHub {
    owner = "skyjake";
    repo = "lagrange";
    rev = "v${finalAttrs.version}";
    hash = "sha256-x80le9/mkL57NQGgmqAdbixYGxcoKKO3Rl+BlpOzTwc=";
    hash = "sha256-YPC+mwXKZOOhLtUU+WHdkQtHFYfIYOiadbuAHLvAXxM=";
  };

  patches = [
    # Remove on next release
    (fetchpatch {
      url = "https://github.com/skyjake/lagrange/commit/e8295f0065e8ecddab2e291e420098ac7981e0a9.patch";
      hash = "sha256-s8Ryace6DOjw4C4h1Kb2ti5oygvsAAs/MF9pC3eQbAM=";
    })
  ];

  nativeBuildInputs = [ cmake pkg-config zip ];

  buildInputs = [ the-foundation ]