2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2017-03-30 20:49:20 +02:00
|
|
|
|
2017-05-04 07:41:57 +02:00
|
|
|
stdenv.mkDerivation {
|
2020-10-03 20:02:16 +02:00
|
|
|
pname = "lambda-mod-zsh-theme-unstable";
|
|
|
|
version = "2020-10-03";
|
2017-03-30 20:49:20 +02:00
|
|
|
|
2017-03-30 21:07:14 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "halfo";
|
2017-05-04 07:41:57 +02:00
|
|
|
repo = "lambda-mod-zsh-theme";
|
2020-10-03 20:02:16 +02:00
|
|
|
rev = "78347ea9709935f265e558b6345919d12323fbff";
|
|
|
|
sha256 = "0fvxnvgbcvwii7ghvpj5l43frllq71wwjvfg7cqfmic727z001dh";
|
2017-03-30 20:49:20 +02:00
|
|
|
};
|
|
|
|
|
2022-05-06 20:39:28 +02:00
|
|
|
strictDeps = true;
|
2017-03-30 20:49:20 +02:00
|
|
|
installPhase = ''
|
2018-07-10 15:28:47 +02:00
|
|
|
install -Dm0644 lambda-mod.zsh-theme $out/share/zsh/themes/lambda-mod.zsh-theme
|
2017-03-30 20:49:20 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-03-30 20:49:20 +02:00
|
|
|
description = "ZSH theme optimized for people who use Git & Unicode-compatible fonts and terminals";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/halfo/lambda-mod-zsh-theme/";
|
2017-03-30 20:49:20 +02:00
|
|
|
license = licenses.mit;
|
2021-03-10 11:56:48 +01:00
|
|
|
platforms = platforms.all;
|
2024-07-28 16:44:11 +02:00
|
|
|
maintainers = [ ];
|
2017-03-30 20:49:20 +02:00
|
|
|
};
|
|
|
|
}
|