indilib: 1.9.1 -> 1.9.2
This commit is contained in:
parent
5fe7b30633
commit
86f62ec915
3 changed files with 6 additions and 5 deletions
|
@ -15,13 +15,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "indilib";
|
pname = "indilib";
|
||||||
version = "1.9.1";
|
version = "1.9.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "indilib";
|
owner = "indilib";
|
||||||
repo = "indi";
|
repo = "indi";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-qXGTHyXhJrApexQL31fba0ZvnHEyTsY3Tb7aB4GpGn4=";
|
sha256 = "sha256-5MaN1aNyHpZzKwQPUpp9NYRh7i+lx1N70+J1gczdtAE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
|
@ -40,7 +40,8 @@ stdenv.mkDerivation rec {
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
for f in indi-qsi/CMakeLists.txt \
|
for f in indi-qsi/CMakeLists.txt \
|
||||||
indi-dsi/CMakeLists.txt \
|
indi-dsi/CMakeLists.txt \
|
||||||
indi-armadillo-platypus/CMakeLists.txt
|
indi-armadillo-platypus/CMakeLists.txt \
|
||||||
|
indi-orion-ssg3/CMakeLists.txt
|
||||||
do
|
do
|
||||||
substituteInPlace $f \
|
substituteInPlace $f \
|
||||||
--replace "/lib/udev/rules.d" "lib/udev/rules.d" \
|
--replace "/lib/udev/rules.d" "lib/udev/rules.d" \
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{ stdenv, lib, callPackage, fetchFromGitHub, indilib }:
|
{ stdenv, lib, callPackage, fetchFromGitHub, indilib }:
|
||||||
|
|
||||||
let
|
let
|
||||||
indi-version = "1.9.1";
|
indi-version = "1.9.2";
|
||||||
indi-3rdparty-src = fetchFromGitHub {
|
indi-3rdparty-src = fetchFromGitHub {
|
||||||
owner = "indilib";
|
owner = "indilib";
|
||||||
repo = "indi-3rdparty";
|
repo = "indi-3rdparty";
|
||||||
rev = "v${indi-version}";
|
rev = "v${indi-version}";
|
||||||
sha256 = "sha256-F0O4WUYdUL6IjJyON/XJp78v4n5rj0unm1xTzEsEH0k=";
|
sha256 = "sha256-dpuJ/J5gc+kAklbvMjsWic9jusXWB4gUcT8E/1eSLXQ=";
|
||||||
};
|
};
|
||||||
indi-firmware = callPackage ./indi-firmware.nix {
|
indi-firmware = callPackage ./indi-firmware.nix {
|
||||||
version = indi-version;
|
version = indi-version;
|
||||||
|
|
Loading…
Reference in a new issue