summaryrefslogtreecommitdiffstats
path: root/default.nix
blob: a3d2eae6bac3a52d6415a2223a9a038354138fc9 (plain)
1
2
3
4
5
6
7
8
9
10
{ nixpkgs ? import <nixpkgs> {}, ... }: with nixpkgs;
stdenv.mkDerivation {
  name = "thesauron";
  src = ./thesauron.md;
  phases = [ "buildPhase" ];
  buildPhase = ''
    mkdir -p $out/share/man/man1
    ${pandoc}/bin/pandoc -s -t man $src -o $out/share/man/man1/thesauron.1
  '';
}