lambda-mod-zsh-theme: init at eceee68cf46bba9f7f42887c2128b48e8861e31b

This commit is contained in:
Maximilian Bosch 2017-03-30 20:49:20 +02:00
parent 8130c350b2
commit 2380e96327
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, fetchgit }:
let
pkgName = "lambda-mod-zsh-theme";
rev = "eceee68cf46bba9f7f42887c2128b48e8861e31b";
in stdenv.mkDerivation rec {
name = "${pkgName}-${rev}";
src = fetchgit {
inherit rev;
url = "https://github.com/halfo/lambda-mod-zsh-theme";
sha256 = "1410ryc22i20na5ypa1q6f106lkjj8n1qfjmb77q4rspi0ydaiy4";
};
buildPhases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/share
cp lambda-mod.zsh-theme $out/share
'';
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 = [ ma27 ];
};
}

View File

@ -9635,6 +9635,8 @@ with pkgs;
haskell-lib = haskell.lib;
};
lambda-mod-zsh-theme = callPackage ../shells/lambda-mod-zsh-theme/default.nix { };
leksah = callPackage ../development/tools/haskell/leksah {
inherit (haskellPackages) ghcWithPackages;
};