Add pytr overlay

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Christopher Mühl 2026-02-12 23:10:31 +01:00
parent bb333784f6
commit 5d68a3edb9
No known key found for this signature in database
GPG key ID: 925AC7D69955293F
3 changed files with 13 additions and 0 deletions

View file

@ -43,6 +43,7 @@
];
permittedInsecurePackages = [
"python3.13-ecdsa-0.19.1" # pytr
# "nixos-config"
# "electron-36.9.5"
# "dotnet-sdk-6.0.428"

View file

@ -33,4 +33,5 @@ in [
(withChannels (import ./packages.nix))
(withChannels (import ./unstable.nix))
(withChannels (import ./spacedrive.nix))
(withChannels (import ./pytr.nix))
]

11
overlays/pytr.nix Normal file
View file

@ -0,0 +1,11 @@
{...}: final: prev: {
pytr = prev.pytr.overrideAttrs (old: {
version = "0.4.5";
src = prev.fetchFromGitHub {
owner = "pytr-org";
repo = "pytr";
rev = "3cd0bb3b1301d89ff9c39de3cb34dc82c0c9af6d";
hash = "sha256-UStDQaZecrpbL9+IApyV49gVQZrGI7eDURtgHZJazrk=";
};
});
}