1{ lib, stdenv, fetchFromGitHub }:
2
3stdenv.mkDerivation {
4 pname = "lambda-mod-zsh-theme-unstable";
5 version = "2020-10-03";
6
7 src = fetchFromGitHub {
8 owner = "halfo";
9 repo = "lambda-mod-zsh-theme";
10 rev = "78347ea9709935f265e558b6345919d12323fbff";
11 sha256 = "0fvxnvgbcvwii7ghvpj5l43frllq71wwjvfg7cqfmic727z001dh";
12 };
13
14 strictDeps = true;
15 installPhase = ''
16 install -Dm0644 lambda-mod.zsh-theme $out/share/zsh/themes/lambda-mod.zsh-theme
17 '';
18
19 meta = with lib; {
20 description = "A ZSH theme optimized for people who use Git & Unicode-compatible fonts and terminals";
21 homepage = "https://github.com/halfo/lambda-mod-zsh-theme/";
22 license = licenses.mit;
23 platforms = platforms.all;
24 maintainers = with maintainers; [ ma27 ];
25 };
26}