nixpkgs/pkgs/applications/editors/yi/wrapper.nix

34 lines
812 B
Nix
Raw Normal View History

# To use this for hacking of your Yi config file, drop into a shell
# with env attribute.
{ lib, stdenv, makeWrapper
, haskellPackages
, extraPackages ? (s: [])
}:
let
yiEnv = haskellPackages.ghcWithPackages
(self: [ self.yi ] ++ extraPackages self);
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "yi-custom";
version = "0.0.0.1";
2019-06-19 15:45:34 +00:00
dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
buildCommand = ''
mkdir -p $out/bin
makeWrapper ${haskellPackages.yi}/bin/yi $out/bin/yi \
--set NIX_GHC ${yiEnv}/bin/ghc
'';
# For hacking purposes
2019-11-09 23:52:53 +00:00
passthru.env = yiEnv;
meta = with lib; {
2015-04-28 08:54:58 +00:00
description = "Allows Yi to find libraries and the compiler easily";
2015-04-15 20:36:06 +00:00
# This wrapper and wrapper only is under PD
license = licenses.publicDomain;
maintainers = with maintainers; [ ];
2015-04-15 20:36:06 +00:00
};
}