Adapt to package format changes.
This commit is contained in:
parent
886a3b0dc8
commit
32726109c8
3 changed files with 4 additions and 4 deletions
|
@ -6,6 +6,6 @@
|
|||
cmake
|
||||
gcc
|
||||
global
|
||||
irony-server
|
||||
# irony-server
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
config.machine.pkgsets.haskell.pkgwrap = [ (pkgs.haskellPackages.ghcWithPackages (pkgs: config.machine.pkgsets.haskell.pkgs)) ];
|
||||
config.machine.pkgsets.haskell.pkgwrap = (pkgs.haskellPackages.ghcWithPackages (pkgs: config.machine.pkgsets.haskell.pkgs));
|
||||
config.machine.pkgsets.haskell.pkgs = with pkgs.haskellPackages; [
|
||||
hindent
|
||||
mtl
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
let
|
||||
gitpkgs = import /nixpkgs {};
|
||||
in {
|
||||
config.machine.pkgsets.python3.pkgwrap = [ (gitpkgs.python3Full.withPackages (ps: with ps; config.machine.pkgsets.python3.pkgs)) ];
|
||||
config.machine.pkgsets.python3.pkgs = with gitpkgs.python3Packages; [
|
||||
config.machine.pkgsets.python3.pkgwrap = (gitpkgs.python3Full.withPackages (ps: with ps; config.machine.pkgsets.python3.pkgs));
|
||||
config.machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [
|
||||
GitPython
|
||||
bpython
|
||||
# cairosvg cairocffi
|
||||
|
|
Loading…
Reference in a new issue