mirror of
https://github.com/awakesecurity/hocker.git
synced 2024-11-25 18:23:18 +03:00
13 lines
206 B
Nix
13 lines
206 B
Nix
|
let
|
||
|
pkgs = import ./nix/pkgs.nix;
|
||
|
|
||
|
hocker = pkgs.haskellPackages.hocker;
|
||
|
|
||
|
in
|
||
|
hocker.env.overrideAttrs (old: {
|
||
|
buildInputs = (old.buildInputs or [ ]) ++ [
|
||
|
pkgs.cabal-install
|
||
|
pkgs.ghcid
|
||
|
];
|
||
|
})
|