17 lines
326 B
Nix
17 lines
326 B
Nix
|
{ 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
|
||
|
|
||
|
# keep this line if you use bash
|
||
|
bashInteractive
|
||
|
];
|
||
|
}
|