Updated unsable and added dev nixpkgs

This commit is contained in:
Andrea Ciceri 2022-04-18 12:51:46 +02:00
parent 09138e72d9
commit 77e2a86231
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
5 changed files with 46 additions and 38 deletions

View file

@ -1,11 +1,14 @@
{ unstablePkgsInput }:
{ nixpkgsUnstableInput, nixpkgsDevInput }:
final: prev:
let
unstablePkgs = (import unstablePkgsInput {
nixpkgsUnstable = (import nixpkgsUnstableInput {
system = prev.system;
config.allowUnfree = true;
}).pkgs;
nixpkgsDev = (import nixpkgsDevInput {
system = prev.system;
config.allowUnfree = true;
}).pkgs;
in
{
@ -13,10 +16,14 @@ in
# sources = prev.callPackage (import ./_sources/generated.nix) { };
customEmacs = prev.callPackage (import ./emacs) { };
amule = prev.callPackage (import ./amule) { };
digikam = unstablePkgs.digikam;
cura = unstablePkgs.cura;
firefox-unwrapped = unstablePkgs.firefox-unwrapped;
geoclue2 = unstablePkgs.geoclue2;
gnome = unstablePkgs.gnome;
digikam = nixpkgsUnstable.digikam;
cura = nixpkgsUnstable.cura;
#firefox-unwrapped = nixpkgsUnstable.firefox-unwrapped;
xdg-desktop-portal = nixpkgsUnstable.xdg-desktop-portal;
xdg-desktop-portal-gtk = nixpkgsUnstable.xdg-desktop-portal-gtk;
vscode = nixpkgsUnstable.vscode;
geoclue2 = nixpkgsUnstable.geoclue2;
gnome = nixpkgsUnstable.gnome;
umoria = nixpkgsDev.umoria;
# then, call packages with `final.callPackage`
}