1
1
Fork 0

nix: use freerdp3 nixpkgs fork

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2025-01-09 20:23:22 -06:00
parent f38f84ea0c
commit c2d6b126b7
Signed by: Myned
GPG key ID: C7224454F7881A34
3 changed files with 13 additions and 10 deletions

View file

@ -48,21 +48,22 @@
stable = nixpkgs "stable"; stable = nixpkgs "stable";
unstable = nixpkgs "unstable"; unstable = nixpkgs "unstable";
staging-next = nixpkgs "staging-next"; master = nixpkgs "master";
dcsunset = nixpkgs "dcsunset";
#// local = nixpkgs "local"; #// local = nixpkgs "local";
in { in {
# Overlay nixpkgs branches # Overlay nixpkgs branches
#?? nixpkgs.BRANCH.PACKAGE #?? nixpkgs.BRANCH.PACKAGE
inherit stable unstable staging-next; inherit stable unstable master;
### Packages ### Packages
# BUG: Build tests often fail on unstable # BUG: Build tests often fail on unstable
# https://github.com/NixOS/nixpkgs/issues/333946 # https://github.com/NixOS/nixpkgs/issues/333946
fprintd = stable.fprintd; fprintd = stable.fprintd;
# BUG: Empty password regression, remove > v3.9.0 on unstable # TODO: Remove when on unstable
# https://github.com/FreeRDP/FreeRDP/issues/10784 # https://github.com/NixOS/nixpkgs/pull/369808
freerdp3 = stable.freerdp3; freerdp3 = dcsunset.freerdp3;
### Development ### Development
#// ciscoPacketTracer8 = local.ciscoPacketTracer8; #// ciscoPacketTracer8 = local.ciscoPacketTracer8;

View file

@ -36,7 +36,7 @@
stylix-stable = flake "github:danth/stylix/release-24.11" // stable "nixpkgs"; stylix-stable = flake "github:danth/stylix/release-24.11" // stable "nixpkgs";
### Unstable ### Unstable
nixpkgs-unstable = flake "github:NixOS/nixpkgs/nixos-unstable-small"; nixpkgs-unstable = flake "github:NixOS/nixpkgs/nixos-unstable";
aagl-gtk-on-nix-unstable = flake "github:ezKEa/aagl-gtk-on-nix" // unstable "nixpkgs"; aagl-gtk-on-nix-unstable = flake "github:ezKEa/aagl-gtk-on-nix" // unstable "nixpkgs";
agenix = flake "github:ryantm/agenix" // unstable "nixpkgs"; agenix = flake "github:ryantm/agenix" // unstable "nixpkgs";
@ -66,8 +66,9 @@
stylix-unstable = flake "github:danth/stylix" // unstable "nixpkgs"; stylix-unstable = flake "github:danth/stylix" // unstable "nixpkgs";
walker = flake "github:abenz1267/walker?ref=v0.10.15" // unstable "nixpkgs"; walker = flake "github:abenz1267/walker?ref=v0.10.15" // unstable "nixpkgs";
### Staging ### Branches
nixpkgs-staging-next = flake "github:NixOS/nixpkgs/staging-next"; nixpkgs-dcsunset = flake "github:DCsunset/nixpkgs/update-freerdp3";
nixpkgs-master = flake "github:NixOS/nixpkgs/master";
### Development ### Development
#// nixpkgs-local = flake "git+file:///home/myned/SYNC/dev/repo/nixpkgs"; #// nixpkgs-local = flake "git+file:///home/myned/SYNC/dev/repo/nixpkgs";

View file

@ -121,9 +121,10 @@
url = "github:nix-community/nixd"; url = "github:nix-community/nixd";
}; };
nixos-hardware.url = "github:NixOS/nixos-hardware"; nixos-hardware.url = "github:NixOS/nixos-hardware";
nixpkgs-dcsunset.url = "github:DCsunset/nixpkgs/update-freerdp3";
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.11"; nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.11";
nixpkgs-staging-next.url = "github:NixOS/nixpkgs/staging-next"; nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
steamtinkerlaunch = { steamtinkerlaunch = {
flake = false; flake = false;
url = "github:sonic2kk/steamtinkerlaunch"; url = "github:sonic2kk/steamtinkerlaunch";