haskell-tinc: don't hard-code the version of GHC used by this tool

We don't want to re-compile tinc just to change the GHC environment used for
building, i.e. when running inside of nix-shell. Instead, find "ghc" in $PATH.
This commit is contained in:
Peter Simons 2017-07-04 15:21:55 +02:00
parent cafed1a84c
commit b683a15d17

View File

@ -3,7 +3,7 @@
, hpack, hspec, HUnit, language-dot, mockery, parsec, process
, QuickCheck, safe, stdenv, temporary, time, transformers, unix
, unix-compat, with-location, yaml, fetchFromGitHub
, ghc, cabal2nix, cabal-install, makeWrapper
, cabal2nix, cabal-install, makeWrapper
}:
mkDerivation {
pname = "tinc";
@ -30,7 +30,6 @@ mkDerivation {
postInstall = ''
source ${makeWrapper}/nix-support/setup-hook
wrapProgram $out/bin/tinc \
--prefix PATH : '${ghc}/bin' \
--prefix PATH : '${cabal2nix}/bin' \
--prefix PATH : '${cabal-install}/bin'
'';