about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/default.nix
blob: 94486bdbfb4b465cd9a0e62a60fb221aa1dfb27d (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
{ lib
, trivialBuild
, fetchFromGitHub
, color-theme
}:

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

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

  packageRequires = [ color-theme ];

  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 ];
  };
}