{ stdenv , notmuch-tcp , zsh, coreutils, gawk, gnused }: stdenv.mkDerivation rec { pname = "notmuch-links"; version = "0.1"; src = ../notmuch-links; phases = [ "buildPhase" "installPhase" ]; inherit zsh coreutils gawk gnused; notmuchtcp = notmuch-tcp; buildPhase = '' substituteAll $src notmuch-links ''; installPhase = '' install -m 0755 -D -t $out/bin \ notmuch-links ''; }