mirror of
https://github.com/icewind1991/cynthion-flake.git
synced 2026-06-03 14:24:07 +02:00
commit
d4511262ad
7 changed files with 22 additions and 18 deletions
|
|
@ -59,7 +59,7 @@ in
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace cynthion/python/src/commands/util.py \
|
substituteInPlace cynthion/python/src/commands/util.py \
|
||||||
--replace-fail 'os.path.join(pkg_path, "assets")' "\"$out/share/assets\""
|
--replace-fail 'os.path.join(package_path, "assets")' "\"$out/share/assets\""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -2,6 +2,6 @@ fetchFromGitHub:
|
||||||
fetchFromGitHub {
|
fetchFromGitHub {
|
||||||
owner = "greatscottgadgets";
|
owner = "greatscottgadgets";
|
||||||
repo = "cynthion";
|
repo = "cynthion";
|
||||||
rev = "0.1.2";
|
rev = "0.1.6";
|
||||||
hash = "sha256-eLimS2gghT52tV01ZlFs8xEwwibB4yezl3eW7zrHpW8=";
|
hash = "sha256-9H82UMtQ6nzYk6TQZSv37hcp/aclrBYZn7ovoExGS/8=";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,17 +10,17 @@
|
||||||
wrapGAppsHook,
|
wrapGAppsHook,
|
||||||
}:
|
}:
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
version = "0.1.0";
|
version = "0.2.2";
|
||||||
pname = "packetry";
|
pname = "packetry";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub rec {
|
||||||
owner = "greatscottgadgets";
|
owner = "greatscottgadgets";
|
||||||
repo = "packetry";
|
repo = "packetry";
|
||||||
rev = "7af5d7fd5c3cefe0291ea8eadcec5200dc6362d0";
|
rev = "v" + version;
|
||||||
hash = "sha256-jGCSI7aI5HenF5s2SKarABHQyCaRSag9jqnihT1WvGM=";
|
hash = "sha256-FlimHJS3hwB2Tkulb8uToKFe165uv/gFxJ4uezVNka4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-h9fFP5VGjYKt42oN/VSghfKPco+1DEh+W3fktYO8RVY=";
|
cargoSha256 = "sha256-n1hPoSUEFUGpEUOiuirSbeAnU+qiENDg4XyN5Jkjo/Y=";
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
|
|
|
||||||
|
|
@ -16,15 +16,15 @@
|
||||||
in
|
in
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "apollo-fpga";
|
pname = "apollo-fpga";
|
||||||
version = "1.0.7";
|
version = "1.1.0";
|
||||||
|
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "greatscottgadgets";
|
owner = "greatscottgadgets";
|
||||||
repo = "apollo";
|
repo = "apollo";
|
||||||
rev = "v1.0.7";
|
rev = "v" + version;
|
||||||
hash = "sha256-sREQpe28MBW+RGFag4OLZsjjvUan6ctZ83aFOMuc3EU=";
|
hash = "sha256-CVMSTjrfrtvfVFbMVvx2FYhkkonvEpiSZ+buqOzHyXk";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -42,6 +42,10 @@ in
|
||||||
pyxdg
|
pyxdg
|
||||||
];
|
];
|
||||||
|
|
||||||
|
pythonPath = with python3Packages; [
|
||||||
|
deprecation
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
|
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
|
||||||
|
|
|
||||||
|
|
@ -14,15 +14,15 @@
|
||||||
in
|
in
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "luna-usb";
|
pname = "luna-usb";
|
||||||
version = "0.1.1";
|
version = "0.1.2";
|
||||||
|
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "greatscottgadgets";
|
owner = "greatscottgadgets";
|
||||||
repo = "luna";
|
repo = "luna";
|
||||||
rev = "0.1.1";
|
rev = version;
|
||||||
hash = "sha256-81GJF3QLERCmvZXYlQvb1vzJFeGMSMNMwuGoaBJE8Zg=";
|
hash = "sha256-T9V0rI6vcEpM3kN/duRni6v2plCU4B379Zx07dBGKjk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
|
||||||
|
|
@ -11,15 +11,15 @@
|
||||||
in
|
in
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyfwup";
|
pname = "pyfwup";
|
||||||
version = "0.4.0";
|
version = "0.5.2";
|
||||||
|
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub rec {
|
||||||
owner = "greatscottgadgets";
|
owner = "greatscottgadgets";
|
||||||
repo = "pyfwup";
|
repo = "pyfwup";
|
||||||
rev = "0.4.0";
|
rev = version;
|
||||||
hash = "sha256-JSaAEGobdLqpSj9yvKrAsXfdkHpXSCcuGYRxz2QJqck=";
|
hash = "sha256-Kyc3f8beTg0W1+U7SvZuNPN1pdsco9rBUfoEtR7AI44=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue