Unverified Commit 349171e9 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #242171 from bcdarwin/update-f3d

f3d: 2.0.0 -> 2.1.0
parents 3cb70a53 d615ce6c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
  pname = "f3d";
  version = "2.0.0";
  version = "2.1.0";

  src = fetchFromGitHub {
    owner = "f3d-app";
    repo = "f3d";
    rev = "v${version}";
    hash = "sha256-od8Wu8+HyQb8qTA6C4kiw5hNI2WPBs/EMt321BJDZoc=";
    rev = "refs/tags/v${version}";
    hash = "sha256-2LDHIeKgLUS2ujJUx2ZerXmZYB9rrT3PYvrtzV4vcHM=";
  };

  nativeBuildInputs = [ cmake ];
@@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
  meta = with lib; {
    description = "Fast and minimalist 3D viewer using VTK";
    homepage = "https://f3d-app.github.io/f3d";
    changelog = "https://github.com/f3d-app/f3d/releases/tag/v${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ bcdarwin ];
    platforms = with platforms; unix;