Skip to content

Commit

Permalink
soqt: 1.6.0 -> 2020-12-05-unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
gebner committed Dec 8, 2020
1 parent 827bb3b commit 2e64b94
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions pkgs/development/libraries/soqt/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{ fetchurl, stdenv, coin3d, qtbase, cmake, pkgconfig }:
{ fetchFromGitHub, stdenv, coin3d, qtbase, cmake, pkgconfig }:

stdenv.mkDerivation rec {
pname = "soqt";
version = "1.6.0";
version = "2020-12-05-unstable";

src = fetchurl {
url = "https://github.com/coin3d/soqt/releases/download/SoQt-${version}/soqt-${version}-src.tar.gz";
sha256 = "07qfljy286vb7y1p93205zn9sp1lpn0rcrqm5010gj87kzsmllwz";
src = fetchFromGitHub {
owner = "coin3d";
repo = "soqt";
# rev = "SoQt-${version}";
rev = "fb8f655632bb9c9c60e0ff9fa69a5ba22d3ff99d";
sha256 = "sha256-YoBq8P3Tag2Sepqxf/qIcJDBhH/gladBmDUj78aacZs=";
fetchSubmodules = true;
};

buildInputs = [ coin3d qtbase ];
Expand Down

0 comments on commit 2e64b94

Please sign in to comment.