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

trivialBuild {
  pname = "railgun";
  version= "0.0.0+unstable=2012-10-17";

  src = fetchFromGitHub {
    owner = "mbriggs";
    repo = "railgun.el";
    rev = "66aaa1b091baef53a69d0d7425f48d184b865fb8";
    hash = "sha256-0L+jFgrXEPMTptx53RDdyH4BiA+7uInHceXL0eROoAM=";
  };

  buildInputs = [ emacs ];

  meta = with lib; {
    homepage = "https://github.com/mbriggs/railgun.el";
    description = "Propel yourself through a rails project with the power of magnets";
    inherit (emacs.meta) platforms;
  };
}