Skip to content

Instantly share code, notes, and snippets.

@cleverca22
Created May 10, 2018 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cleverca22/5db384beaaed0aae12be0bd125681c32 to your computer and use it in GitHub Desktop.
Save cleverca22/5db384beaaed0aae12be0bd125681c32 to your computer and use it in GitHub Desktop.
{ pkgs, ... }:
let
mctt = stdenv.mkDerivation rec {
name = "mcct-0.01";
dontBuild = true;
src = /home/days/.communi;
#mkdir -p $out/share/{doc,fonts/opentype}
installPhase = ''
ls -a
cp -Rpv ntt $out/share/communi/themes
'';
meta = with stdenv.lib; {
description = "custom theme for communi";
license = licenses.ofl;
platforms = platforms.all;
};
};
in {
environment.systemPackages = with pkgs; [ mcct ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment