2021-04-23 07:34:06 -04:00
|
|
|
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
|
|
|
|
let
|
|
|
|
nur = import (builtins.fetchTarball
|
|
|
|
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
|
|
|
in pkgs.mkShell {
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
calibre
|
|
|
|
nur.repos.mic92.pandoc-bin
|
2021-04-23 14:22:52 -04:00
|
|
|
redo-apenwarr
|
2021-04-23 07:34:06 -04:00
|
|
|
|
|
|
|
# keep this line if you use bash
|
|
|
|
bashInteractive
|
|
|
|
];
|
|
|
|
}
|