mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
lambda-mod-zsh-theme: init at eceee68cf46bba9f7f42887c2128b48e8861e31b
This commit is contained in:
parent
8130c350b2
commit
2380e96327
30
pkgs/shells/lambda-mod-zsh-theme/default.nix
Normal file
30
pkgs/shells/lambda-mod-zsh-theme/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user