1{ stdenv, fetchFromGitHub }:
2
3stdenv.mkDerivation {
4 name = "lambda-mod-zsh-theme-unstable-2017-10-08";
5
6 src = fetchFromGitHub {
7 owner = "halfo";
8 repo = "lambda-mod-zsh-theme";
9 sha256 = "13yis07zyr192s0x2h04k5bm1yzbk5m3js83aa17xh5573w4b786";
10 rev = "61c373c8aa5556d51522290b82ad44e7166bced1";
11 };
12
13 installPhase = ''
14 mkdir -p $out/share/themes
15 cp lambda-mod.zsh-theme $out/share/themes
16 '';
17
18 meta = with stdenv.lib; {
19 description = "A ZSH theme optimized for people who use Git & Unicode-compatible fonts and terminals";
20 homepage = https://github.com/halfo/lambda-mod-zsh-theme/;
21 license = licenses.mit;
22 platforms = platforms.linux;
23 maintainers = with maintainers; [ ma27 ];
24 };
25}