Add pytr overlay
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
bb333784f6
commit
5d68a3edb9
3 changed files with 13 additions and 0 deletions
|
|
@ -43,6 +43,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
permittedInsecurePackages = [
|
permittedInsecurePackages = [
|
||||||
|
"python3.13-ecdsa-0.19.1" # pytr
|
||||||
# "nixos-config"
|
# "nixos-config"
|
||||||
# "electron-36.9.5"
|
# "electron-36.9.5"
|
||||||
# "dotnet-sdk-6.0.428"
|
# "dotnet-sdk-6.0.428"
|
||||||
|
|
|
||||||
|
|
@ -33,4 +33,5 @@ in [
|
||||||
(withChannels (import ./packages.nix))
|
(withChannels (import ./packages.nix))
|
||||||
(withChannels (import ./unstable.nix))
|
(withChannels (import ./unstable.nix))
|
||||||
(withChannels (import ./spacedrive.nix))
|
(withChannels (import ./spacedrive.nix))
|
||||||
|
(withChannels (import ./pytr.nix))
|
||||||
]
|
]
|
||||||
|
|
|
||||||
11
overlays/pytr.nix
Normal file
11
overlays/pytr.nix
Normal 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=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue