nixos-config/pkgs/lektor-with-plugins/lektor-git/shell.nix

24 lines
331 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ pkgs ? import <nixpkgs> { } }:
let
callPackage = pkgs.lib.callPackageWith pkgs;
bin = callPackage ./default.nix {};
in
pkgs.mkShell {
# needed pkgs
# -----------
buildInputs = with pkgs; [
bin
];
# run this on start
# -----------------
#shellHook = ''
# HISTFILE=${toString ./.}/.history
#'';
}