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

6
flake.lock generated
View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1733157473,
"narHash": "sha256-rfg19HAHOMW4zwkqWkPdTjdHyVwo/zaJXmvRqtqis9M=",
"lastModified": 1745124554,
"narHash": "sha256-IlzzbKV0bRCAJ9AwmIcLHARfCPbktdzdzjfPvtpJXpI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "88b018ad401e040c0a33420077d86b20aea177c7",
"rev": "42200c47299544ed0615b66d46322a41308d7390",
"type": "github"
},
"original": {

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,9 +3,13 @@
stdenvNoCC,
...
}:
stdenvNoCC.mkDerivation {
let
src = import ./src.nix fetchFromGitHub;
in
stdenvNoCC.mkDerivation {
pname = "cynthion-udev";
version = "0.1.7";
version = src.rev;
dontBuild = true;
dontFixup = true;
@ -15,4 +19,4 @@ stdenvNoCC.mkDerivation {
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;
};