about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs-modes/hsc3/default.nix
blob: 75b72516a3cd28eb1e3cbbb0d1eb76f4872e80ae (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
{ stdenv, fetchurl, emacs }:

# this package installs the emacs-mode which
# resides in the hsc3 sources.

let version = "0.15";

in stdenv.mkDerivation {
  pname = "hsc3-mode";
  inherit version;
  src = fetchurl {
    url = mirror://hackage/hsc3-0.15/hsc3-0.15.tar.gz;
    sha256 = "2f3b15655419cf8ebe25ab1c6ec22993b2589b4ffca7c3a75ce478ca78a0bde6";
  };

  buildInputs = [ emacs ];

  installPhase = ''
    mkdir -p "$out/share/emacs/site-lisp"
    cp "emacs/hsc3.el" "$out/share/emacs/site-lisp"
  '';

  meta = {
    homepage = http://rd.slavepianos.org/?t=hsc3;
    description = "hsc3 mode package for Emacs";
    platforms = stdenv.lib.platforms.unix;
  };
}