mu-repo: migrate to by-name

This commit is contained in:
Grayson Tinker
2026-06-09 07:42:54 -07:00
parent 1200bc87a6
commit 84f3d12f5b
2 changed files with 3 additions and 5 deletions
@@ -7,7 +7,7 @@
mu-repo,
}:
python3Packages.buildPythonApplication rec {
python3Packages.buildPythonApplication (finalAttrs: {
pname = "mu-repo";
version = "1.9.0";
format = "setuptools";
@@ -15,7 +15,7 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "fabioz";
repo = "mu-repo";
tag = "mu_repo_${lib.replaceStrings [ "." ] [ "_" ] version}";
tag = "mu_repo_${lib.replaceStrings [ "." ] [ "_" ] finalAttrs.version}";
hash = "sha256-aSRf0B/skoZLsn4dykWOFKVNtHYCsD9RtZ1frHDrcJU=";
};
@@ -40,4 +40,4 @@ python3Packages.buildPythonApplication rec {
maintainers = with lib.maintainers; [ sikmir ];
mainProgram = "mu";
};
}
})
-2
View File
@@ -9423,8 +9423,6 @@ with pkgs;
mpvScripts = callPackage ../by-name/mp/mpv/scripts.nix { };
mu-repo = callPackage ../applications/misc/mu-repo { };
murmur =
(callPackages ../applications/networking/mumble {
avahi = avahi-compat;