nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 30 lines 755 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5}: 6 7stdenv.mkDerivation { 8 pname = "lambda-mod-zsh-theme-unstable"; 9 version = "2020-10-03"; 10 11 src = fetchFromGitHub { 12 owner = "halfo"; 13 repo = "lambda-mod-zsh-theme"; 14 rev = "78347ea9709935f265e558b6345919d12323fbff"; 15 sha256 = "0fvxnvgbcvwii7ghvpj5l43frllq71wwjvfg7cqfmic727z001dh"; 16 }; 17 18 strictDeps = true; 19 installPhase = '' 20 install -Dm0644 lambda-mod.zsh-theme $out/share/zsh/themes/lambda-mod.zsh-theme 21 ''; 22 23 meta = { 24 description = "ZSH theme optimized for people who use Git & Unicode-compatible fonts and terminals"; 25 homepage = "https://github.com/halfo/lambda-mod-zsh-theme/"; 26 license = lib.licenses.mit; 27 platforms = lib.platforms.all; 28 maintainers = [ ]; 29 }; 30}