Updated unsable
and added dev nixpkgs
This commit is contained in:
parent
09138e72d9
commit
77e2a86231
5 changed files with 46 additions and 38 deletions
|
@ -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`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue