Skip to content

Commit

Permalink
Fix invalid branch reference on default.nix.
Browse files Browse the repository at this point in the history
  • Loading branch information
renatoGarcia committed Jul 9, 2020
1 parent f29158c commit b300e73
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_policy(SET CMP0048 NEW)
include(CMakePackageConfigHelpers)


project(opencv-swig VERSION 1.0.0 LANGUAGES NONE)
project(opencv-swig VERSION 1.0.1 LANGUAGES NONE)

if(WIN32 AND NOT CYGWIN)
set(DEF_INSTALL_CMAKE_DIR CMake)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ correct environment:
let
pkgs = import <nixpkgs> {};
opencv-swig = pkgs.callPackage (
fetchTarball https://github.com/renatoGarcia/opencv-swig/archive/v1.0.0.tar.gz
fetchTarball https://github.com/renatoGarcia/opencv-swig/archive/v1.0.1.tar.gz
) {};
in pkgs.mkShell {
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let

repo = builtins.fetchGit {
url = https://github.com/renatoGarcia/opencv-swig.git;
ref = "cmake_nix";
ref = "master";
rev = devHash;
};

Expand Down
2 changes: 1 addition & 1 deletion hello_world/shell.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let
pkgs = import <nixpkgs> {};
opencv-swig = pkgs.callPackage (
fetchTarball https://github.com/renatoGarcia/opencv-swig/archive/v1.0.0.tar.gz
fetchTarball https://github.com/renatoGarcia/opencv-swig/archive/v1.0.1.tar.gz
) {};

in pkgs.mkShell {
Expand Down

0 comments on commit b300e73

Please sign in to comment.