openmvg: 1.3 -> 1.6 (unbreak)

This commit is contained in:
Scott Worley 2020-04-15 14:00:47 -07:00 committed by Daniël de Kok
parent 2da253a7de
commit 05a16be9c5

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, pkgconfig, cmake { stdenv, fetchFromGitHub, pkgconfig, cmake
, libjpeg ? null , libjpeg ? null
, zlib ? null , zlib ? null
, libpng ? null , libpng ? null
@ -8,15 +8,14 @@
, enableDocs ? false }: , enableDocs ? false }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.3"; version = "1.6";
pname = "openmvg"; pname = "openmvg";
src = fetchgit { src = fetchFromGitHub {
url = "https://www.github.com/openmvg/openmvg.git"; owner = "openmvg";
repo = "openmvg";
# Tag v1.1 rev = "v${version}";
rev = "refs/tags/v${version}"; sha256 = "0mrsi0dzgi7cjzn13r9xv7rnc8c9a4h8ip78xy88m9xsyr21wd1h";
sha256 = "1cf1gbcl8zvxp4rr6f6vaxwcg0yzc4xban2b5p9zy1m4k1f81zyb";
fetchSubmodules = true; fetchSubmodules = true;
}; };
@ -46,6 +45,5 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.mpl20; license = stdenv.lib.licenses.mpl20;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ mdaiter ]; maintainers = with stdenv.lib.maintainers; [ mdaiter ];
broken = true; # 2018-04-11
}; };
} }