Compare commits
	
		
			14 Commits
		
	
	
		
			822bd46cd9
			...
			update_fla
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 502a26b8d9 | ||
| f0f3f19c21 | |||
| f05330dd60 | |||
| 1f4adea38e | |||
| 8fe36cfddc | |||
| 66fe96f8ce | |||
| ac27bd0bec | |||
| 6df2a1a659 | |||
| 5a6dd50718 | |||
| 67d062e9b0 | |||
| de4bb6a60e | |||
| 101ab28b9b | |||
| d2e3803d2d | |||
|  | cff7f6163f | 
| @@ -2,7 +2,9 @@ | |||||||
|  |  | ||||||
| **My personal [NUR](https://github.com/nix-community/NUR) repository** | **My personal [NUR](https://github.com/nix-community/NUR) repository** | ||||||
|  |  | ||||||
| [CI](https://git.xeals.me/xeals/nur-packages/actions) [](https://xeals.cachix.org) | [](https://git.xeals.me/xeals/nur-packages/actions) | ||||||
|  | [](https://xeals.cachix.org) | ||||||
|  |  | ||||||
|  |  | ||||||
| ## Using | ## Using | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										6
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										6
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							| @@ -20,11 +20,11 @@ | |||||||
|     }, |     }, | ||||||
|     "nixpkgs": { |     "nixpkgs": { | ||||||
|       "locked": { |       "locked": { | ||||||
|         "lastModified": 1740019556, |         "lastModified": 1761349956, | ||||||
|         "narHash": "sha256-vn285HxnnlHLWnv59Og7muqECNMS33mWLM14soFIv2g=", |         "narHash": "sha256-tH3wHnOJms+U4k/rK2Nn1RfBrhffX92jLP/2VndSn0w=", | ||||||
|         "owner": "NixOS", |         "owner": "NixOS", | ||||||
|         "repo": "nixpkgs", |         "repo": "nixpkgs", | ||||||
|         "rev": "dad564433178067be1fbdfcce23b546254b6d641", |         "rev": "02f2cb8e0feb4596d20cc52fda73ccee960e3538", | ||||||
|         "type": "github" |         "type": "github" | ||||||
|       }, |       }, | ||||||
|       "original": { |       "original": { | ||||||
|   | |||||||
| @@ -18,6 +18,8 @@ python3Packages.buildPythonApplication rec { | |||||||
|  |  | ||||||
|   propagatedBuildInputs = [ mopidy python3Packages.py-sonic ]; |   propagatedBuildInputs = [ mopidy python3Packages.py-sonic ]; | ||||||
|  |  | ||||||
|  |   format = "setuptools"; | ||||||
|  |  | ||||||
|   doCheck = false; |   doCheck = false; | ||||||
|  |  | ||||||
|   meta = with lib; { |   meta = with lib; { | ||||||
|   | |||||||
| @@ -20,6 +20,8 @@ python3Packages.buildPythonApplication rec { | |||||||
|     pyyaml |     pyyaml | ||||||
|   ]; |   ]; | ||||||
|  |  | ||||||
|  |   format = "setuptools"; | ||||||
|  |  | ||||||
|   patchPhase = '' |   patchPhase = '' | ||||||
|     substituteInPlace setup.py \ |     substituteInPlace setup.py \ | ||||||
|       --replace PROJECTVERSION "${version}" |       --replace PROJECTVERSION "${version}" | ||||||
|   | |||||||
| @@ -3,6 +3,7 @@ | |||||||
| , fetchFromGitHub | , fetchFromGitHub | ||||||
| , python3 | , python3 | ||||||
| , beets | , beets | ||||||
|  | , wrapGAppsHook | ||||||
| }: | }: | ||||||
|  |  | ||||||
| let | let | ||||||
| @@ -46,6 +47,9 @@ python3.pkgs.buildPythonApplication { | |||||||
|     sed -i 's/Flask <3.0.0/Flask/' pyproject.toml |     sed -i 's/Flask <3.0.0/Flask/' pyproject.toml | ||||||
|   ''; |   ''; | ||||||
|  |  | ||||||
|  |   # required for apprise | ||||||
|  |   nativeBuildInputs = [ wrapGAppsHook ]; | ||||||
|  |  | ||||||
|   build-system = with python3.pkgs; [ setuptools ]; |   build-system = with python3.pkgs; [ setuptools ]; | ||||||
|  |  | ||||||
|   dependencies = (with python3.pkgs; [ |   dependencies = (with python3.pkgs; [ | ||||||
|   | |||||||
| @@ -23,6 +23,7 @@ assert withGui -> gtk3.meta.available; | |||||||
| rustPlatform.buildRustPackage rec { | rustPlatform.buildRustPackage rec { | ||||||
|   pname = "psst"; |   pname = "psst"; | ||||||
|   version = "20221012.d70ed81"; |   version = "20221012.d70ed81"; | ||||||
|  |  | ||||||
|   src = fetchFromGitHub { |   src = fetchFromGitHub { | ||||||
|     owner = "jpochyla"; |     owner = "jpochyla"; | ||||||
|     repo = "psst"; |     repo = "psst"; | ||||||
| @@ -30,7 +31,7 @@ rustPlatform.buildRustPackage rec { | |||||||
|     hash = "sha256-ZKhHN0ruLb6ZVKkrKv/YawRsVop6SP1QF/nrtkmA8P8="; |     hash = "sha256-ZKhHN0ruLb6ZVKkrKv/YawRsVop6SP1QF/nrtkmA8P8="; | ||||||
|     fetchSubmodules = true; |     fetchSubmodules = true; | ||||||
|   }; |   }; | ||||||
|   cargoHash = "sha256-zH6+EV78FDVOYEFXk0f54pH2Su0QpK1I0bHqzIiMdBo="; |   cargoHash = "sha256-my15AXG9LLmdqZLqXdeZ81VLv+GbSMgNtuFAlYTEUvQ="; | ||||||
|  |  | ||||||
|   nativeBuildInputs = [ pkg-config ] |   nativeBuildInputs = [ pkg-config ] | ||||||
|     ++ optional withGui copyDesktopItems; |     ++ optional withGui copyDesktopItems; | ||||||
|   | |||||||
| @@ -55,6 +55,8 @@ python3Packages.buildPythonApplication rec { | |||||||
|     (if opusSupport then opusTools else null) |     (if opusSupport then opusTools else null) | ||||||
|   ]; |   ]; | ||||||
|  |  | ||||||
|  |   format = "setuptools"; | ||||||
|  |  | ||||||
|   # Remove impure executables. |   # Remove impure executables. | ||||||
|   patches = [ ./fix-setup.patch ]; |   patches = [ ./fix-setup.patch ]; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -24,6 +24,9 @@ buildDotnetModule rec { | |||||||
|     mv $out/bin/TheAirBlow.Thor.Shell $out/bin/thor |     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 = { |   meta = { | ||||||
|     homepage = "https://github.com/Samsung-Loki/Thor"; |     homepage = "https://github.com/Samsung-Loki/Thor"; | ||||||
|     description = "An alternative to Heimdall"; |     description = "An alternative to Heimdall"; | ||||||
|   | |||||||
| @@ -12,6 +12,8 @@ buildPythonPackage rec { | |||||||
|     sha256 = "0wh2phg8h02a6vlpqd0widd6g8ng142vzmk8hpyx0bnwn2i45sjc"; |     sha256 = "0wh2phg8h02a6vlpqd0widd6g8ng142vzmk8hpyx0bnwn2i45sjc"; | ||||||
|   }; |   }; | ||||||
|  |  | ||||||
|  |   format = "setuptools"; | ||||||
|  |  | ||||||
|   doCheck = false; |   doCheck = false; | ||||||
|  |  | ||||||
|   meta = with lib; { |   meta = with lib; { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user