9 Commits

Author SHA1 Message Date
66fe96f8ce py-sonic: force setuptools build
Some checks failed
CI / checks (nur) (push) Successful in 3m40s
CI / build-and-update (xeals, xeals) (push) Successful in 23m2s
Update flake inputs / update-flake (push) Failing after 2m43s
2025-07-19 16:26:07 +10:00
ac27bd0bec amdgpu-fan: force setuptools build
Some checks failed
CI / checks (nur) (push) Successful in 3m42s
CI / build-and-update (xeals, xeals) (push) Failing after 3m22s
2025-07-19 16:14:58 +10:00
6df2a1a659 spotify-ripper: force setuptools build 2025-07-19 16:14:58 +10:00
5a6dd50718 mopidy-subidy: force setuptools build 2025-07-19 16:14:58 +10:00
67d062e9b0 flake: update inputs 2025-07-19 16:14:58 +10:00
de4bb6a60e psst: enable useFetchCargoVendor
Some checks failed
CI / checks (nur) (push) Successful in 3m34s
CI / build-and-update (xeals, xeals) (push) Successful in 21m51s
Update flake inputs / update-flake (push) Failing after 3m3s
2025-03-21 12:12:27 +11:00
101ab28b9b thor: prefer local build
Some checks failed
CI / checks (nur) (push) Successful in 3m34s
CI / build-and-update (xeals, xeals) (push) Failing after 8m56s
2025-03-21 12:00:08 +11:00
d2e3803d2d Merge pull request 'flake: update inputs' (#3) from update_flake_lock_action into main
Some checks failed
CI / checks (nur) (push) Successful in 3m35s
CI / build-and-update (xeals, xeals) (push) Failing after 3m26s
Reviewed-on: #3
2025-03-21 11:33:53 +11:00
github-actions[bot]
cff7f6163f flake: update inputs
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/dad564433178067be1fbdfcce23b546254b6d641' (2025-02-20)
  → 'github:NixOS/nixpkgs/573c650e8a14b2faa0041645ab18aed7e60f0c9a' (2025-03-13)
2025-03-17 06:52:32 +00:00
7 changed files with 17 additions and 4 deletions

6
flake.lock generated
View File

@@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1740019556,
"narHash": "sha256-vn285HxnnlHLWnv59Og7muqECNMS33mWLM14soFIv2g=",
"lastModified": 1752841793,
"narHash": "sha256-pGvcN/yiJ4e3/hgvTwkyZvl6c3HuLLCY/hjEzDuQB54=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "dad564433178067be1fbdfcce23b546254b6d641",
"rev": "8131c0ea9df6293a247be743a387ff725e464db7",
"type": "github"
},
"original": {

View File

@@ -18,6 +18,8 @@ python3Packages.buildPythonApplication rec {
propagatedBuildInputs = [ mopidy python3Packages.py-sonic ];
format = "setuptools";
doCheck = false;
meta = with lib; {

View File

@@ -20,6 +20,8 @@ python3Packages.buildPythonApplication rec {
pyyaml
];
format = "setuptools";
patchPhase = ''
substituteInPlace setup.py \
--replace PROJECTVERSION "${version}"

View File

@@ -23,6 +23,7 @@ assert withGui -> gtk3.meta.available;
rustPlatform.buildRustPackage rec {
pname = "psst";
version = "20221012.d70ed81";
src = fetchFromGitHub {
owner = "jpochyla";
repo = "psst";
@@ -30,7 +31,8 @@ rustPlatform.buildRustPackage rec {
hash = "sha256-ZKhHN0ruLb6ZVKkrKv/YawRsVop6SP1QF/nrtkmA8P8=";
fetchSubmodules = true;
};
cargoHash = "sha256-zH6+EV78FDVOYEFXk0f54pH2Su0QpK1I0bHqzIiMdBo=";
useFetchCargoVendor = true;
cargoHash = "sha256-my15AXG9LLmdqZLqXdeZ81VLv+GbSMgNtuFAlYTEUvQ=";
nativeBuildInputs = [ pkg-config ]
++ optional withGui copyDesktopItems;

View File

@@ -55,6 +55,8 @@ python3Packages.buildPythonApplication rec {
(if opusSupport then opusTools else null)
];
format = "setuptools";
# Remove impure executables.
patches = [ ./fix-setup.patch ];

View File

@@ -24,6 +24,9 @@ buildDotnetModule rec {
mv $out/bin/TheAirBlow.Thor.Shell $out/bin/thor
'';
# dotnet7 is unsupported but it still runs fine; just don't build it in CI.
# https://github.com/Samsung-Loki/Thor/issues/23
preferLocalBuild = true;
meta = {
homepage = "https://github.com/Samsung-Loki/Thor";
description = "An alternative to Heimdall";

View File

@@ -12,6 +12,8 @@ buildPythonPackage rec {
sha256 = "0wh2phg8h02a6vlpqd0widd6g8ng142vzmk8hpyx0bnwn2i45sjc";
};
format = "setuptools";
doCheck = false;
meta = with lib; {