mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zimfw";
|
|
version = "1.14.0";
|
|
src = fetchFromGitHub {
|
|
owner = "zimfw";
|
|
repo = "zimfw";
|
|
rev = "v${version}";
|
|
## zim only needs this one file to be installed.
|
|
sparseCheckout = [ "zimfw.zsh" ];
|
|
hash = "sha256-JBMrgUMGsvjYasEHJsZ0jZAHmrN3Z0d8T8agI9FiEPs=";
|
|
};
|
|
strictDeps = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
cp -r $src/zimfw.zsh $out/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
## zim automates the downloading of any plugins you specify in the `.zimrc`
|
|
## file. To do that with Nix, you'll need $ZIM_HOME to be writable.
|
|
## `~/.cache/zim` is a good place for that. The problem is that zim also
|
|
## looks for `zimfw.zsh` there, so we're going to tell it here to look for
|
|
## the `zimfw.zsh` where we currently are.
|
|
postFixup = ''
|
|
substituteInPlace $out/zimfw.zsh \
|
|
--replace "\''${ZIM_HOME}/zimfw.zsh" "$out/zimfw.zsh" \
|
|
--replace "\''${(q-)ZIM_HOME}/zimfw.zsh" "$out/zimfw.zsh"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"The Zsh configuration framework with blazing speed and modular extensions";
|
|
homepage = "https://zimfw.sh";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.joedevivo ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|