summary refs log tree commit diff
path: root/pkgs/shells/zsh/lambda-mod-zsh-theme
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-04-17 14:03:07 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-04-17 14:47:32 -0500
commitddaea6ac77177c91576568af4b6f6d85195559af (patch)
tree0292a346327a613a52b95492aea9ed76d8c55dfe /pkgs/shells/zsh/lambda-mod-zsh-theme
parentd308ac923376b76183a0b4078f808ce40af8f86b (diff)
downloadnixpkgs-ddaea6ac77177c91576568af4b6f6d85195559af.tar
nixpkgs-ddaea6ac77177c91576568af4b6f6d85195559af.tar.gz
nixpkgs-ddaea6ac77177c91576568af4b6f6d85195559af.tar.bz2
nixpkgs-ddaea6ac77177c91576568af4b6f6d85195559af.tar.lz
nixpkgs-ddaea6ac77177c91576568af4b6f6d85195559af.tar.xz
nixpkgs-ddaea6ac77177c91576568af4b6f6d85195559af.tar.zst
nixpkgs-ddaea6ac77177c91576568af4b6f6d85195559af.zip
pkgs/shells: move extensions to subdirs
These are not reaal shells and should go into their parent shell
directory.
Diffstat (limited to 'pkgs/shells/zsh/lambda-mod-zsh-theme')
-rw-r--r--pkgs/shells/zsh/lambda-mod-zsh-theme/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/shells/zsh/lambda-mod-zsh-theme/default.nix b/pkgs/shells/zsh/lambda-mod-zsh-theme/default.nix
new file mode 100644
index 00000000000..6dea51a487e
--- /dev/null
+++ b/pkgs/shells/zsh/lambda-mod-zsh-theme/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation {
+  name = "lambda-mod-zsh-theme-unstable-2017-10-08";
+
+  src = fetchFromGitHub {
+    owner = "halfo";
+    repo = "lambda-mod-zsh-theme";
+    sha256 = "13yis07zyr192s0x2h04k5bm1yzbk5m3js83aa17xh5573w4b786";
+    rev = "61c373c8aa5556d51522290b82ad44e7166bced1";
+  };
+
+  installPhase = ''
+    mkdir -p $out/share/themes
+    cp lambda-mod.zsh-theme $out/share/themes
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A ZSH theme optimized for people who use Git & Unicode-compatible fonts and terminals";
+    homepage = https://github.com/halfo/lambda-mod-zsh-theme/;
+    license = licenses.mit;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ ma27 ];
+  };
+}