update packages

cynthion: 0.1.7 -> 0.1.8
  apollo-firmware: 1.1.0 -> 1.1.1
This commit is contained in:
sapphire-arches 2025-04-19 22:18:26 -07:00
commit f20d9b31ec
5 changed files with 23 additions and 19 deletions

View file

@ -20,13 +20,13 @@
in
stdenv.mkDerivation rec {
pname = "apollo-${board}";
version = "1.1.0";
version = "1.1.1";
src = fetchFromGitHub {
owner = "greatscottgadgets";
repo = "apollo";
rev = "v" + version;
hash = "sha256-CVMSTjrfrtvfVFbMVvx2FYhkkonvEpiSZ+buqOzHyXk";
hash = "sha256-LvEGOVnC/0hwjxrkh3pV3uU2CuRyuQVmVJGQLumcChw=";
fetchSubmodules = true;
};

View file

@ -2,6 +2,6 @@ fetchFromGitHub:
fetchFromGitHub {
owner = "greatscottgadgets";
repo = "cynthion";
rev = "0.1.7";
hash = "sha256-2nVfODAg4t5hoSKUEP4IN23R+JGe3lw/rpfjW/UIsYw=";
rev = "0.1.8";
hash = "sha256-twkCv47Goob2cO7FeHegvab3asf8fqbY9qg97Vw4ZCo=";
}

View file

@ -3,16 +3,20 @@
stdenvNoCC,
...
}:
stdenvNoCC.mkDerivation {
pname = "cynthion-udev";
version = "0.1.7";
dontBuild = true;
dontFixup = true;
let
src = import ./src.nix fetchFromGitHub;
in
stdenvNoCC.mkDerivation {
pname = "cynthion-udev";
version = src.rev;
dontBuild = true;
dontFixup = true;
installPhase = ''
mkdir -p $out/lib/udev/rules.d
cp cynthion/python/assets/54-cynthion.rules $out/lib/udev/rules.d/54-cynthion.rules
'';
}
src = import ./src.nix fetchFromGitHub;
installPhase = ''
mkdir -p $out/lib/udev/rules.d
cp cynthion/python/assets/54-cynthion.rules $out/lib/udev/rules.d/54-cynthion.rules
'';
}

View file

@ -16,7 +16,7 @@
in
buildPythonPackage rec {
pname = "apollo-fpga";
version = "1.1.0";
version = "1.1.1";
pyproject = true;
@ -24,7 +24,7 @@ in
owner = "greatscottgadgets";
repo = "apollo";
rev = "v" + version;
hash = "sha256-CVMSTjrfrtvfVFbMVvx2FYhkkonvEpiSZ+buqOzHyXk";
hash = "sha256-LvEGOVnC/0hwjxrkh3pV3uU2CuRyuQVmVJGQLumcChw=";
fetchSubmodules = true;
};