nixos-config/nixos/pkgs/gitlog2json/shell.nix

18 lines
328 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ pkgs ? import <nixpkgs> { } }:
2019-10-24 02:20:38 +02:00
pkgs.mkShell {
buildInputs = with pkgs; [
pkgs.python3Packages.GitPython
pkgs.python3Packages.ipython
pkgs.python3Packages.elasticsearch
pkgs.python3Packages.click
2019-12-20 05:54:26 +01:00
(pkgs.callPackage ./default.nix { })
2019-10-24 02:20:38 +02:00
];
shellHook = ''
HISTFILE=${toString ./.}/.history
'';
}