about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/color-theme-solarized/default.nix
blob: 1ac8b2f707686998273217b82e2f662a17f2213d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, trivialBuild
, fetchFromGitHub
, emacs
, color-theme
}:

trivialBuild {
  pname = "color-theme-solarized";
  version = "0.pre+unstable=2017-10-24";

  src = fetchFromGitHub {
    owner = "sellout";
    repo = "emacs-color-theme-solarized";
    rev = "f3ca8902ea056fb8e46cb09f09c96294e31cd4ee";
    hash = "sha256-oxX0lo6sxotEiR3nPrKPE9H01HKB3ohB/p8eEHFTp5k=";
  };

  buildInputs = [ emacs ];
  propagatedUserEnvPkgs = [ color-theme ];

  buildPhase = ''
    runHook preBuild

    emacs -L . -L ${color-theme}/share/emacs/site-lisp/elpa/color-theme-* \
      --batch -f batch-byte-compile *.el

    runHook postBuild
  '';

  meta = with lib; {
    homepage = "http://ethanschoonover.com/solarized";
    description = "Precision colors for machines and people; Emacs implementation";
    license = licenses.mit;
    maintainers = with maintainers; [ samuelrivas AndersonTorres ];
    inherit (emacs.meta) platforms;
  };
}