Compare commits

..

No commits in common. "63f888db9b2dab4baee512b6ca7558c686a2a259" and "3fa67075a13dd2a7eb48f8001504923ce844159b" have entirely different histories.

5 changed files with 1 additions and 39 deletions

View file

@ -43,7 +43,6 @@
nixpkgs.lib.nixosSystem { nixpkgs.lib.nixosSystem {
system = arch; system = arch;
modules = [ modules = [
(import ./overlays)
./nixosModules ./nixosModules
./hosts/${host} ./hosts/${host}
./hosts/base ./hosts/base

View file

@ -28,7 +28,7 @@ in
python3 python3
poetry poetry
pre-commit pre-commit
uv-bin uv
] ]
++ lib.optionals cfg.install-additional [ ++ lib.optionals cfg.install-additional [
python313 python313

View file

@ -1,6 +0,0 @@
{ ... }:
{
nixpkgs.overlays = [
(import ./uv)
];
}

View file

@ -1,3 +0,0 @@
(final: prev: {
uv-bin = prev.callPackage ./package.nix { };
})

View file

@ -1,28 +0,0 @@
{
stdenv,
versionCheckHook,
lib,
}:
stdenv.mkDerivation rec {
pname = "uv-bin";
version = "0.5.5";
src = fetchTarball {
url = "https://github.com/astral-sh/uv/releases/download/${version}/uv-x86_64-unknown-linux-gnu.tar.gz";
sha256 = "";
};
nativeCheckInputs = [
versionCheckHook
];
versionCheckProgramArg = [ "--version" ];
meta = {
description = "Extremely fast Python package installer and resolver, written in Rust";
homepage = "https://github.com/astral-sh/uv";
license = with lib.licenses; [
asl20
mit
];
};
}