Merge pull request #153959 from NixOS/emacs-fixups-2022-01-08

emacs.pkgs.*: Minor package fixups & deletions
This commit is contained in:
adisbladis 2022-01-08 20:44:15 +12:00 committed by GitHub
commit adc702eb92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 27 deletions

View File

@ -2,6 +2,8 @@
, trivialBuild
, fetchFromGitHub
, emacs
, popup
, ess
}:
trivialBuild rec {
@ -15,6 +17,11 @@ trivialBuild rec {
hash = "sha256-YN8ZLXEbwTFdFfovkV2IXV9v6y/PTgCdiRQqbpRaF2E=";
};
packageRequires = [
popup
ess
];
meta = {
homepage = "https://github.com/myuhe/ess-R-object-popup.el";
description = "Popup descriptions of R objects";

View File

@ -225,8 +225,6 @@
};
};
railgun = callPackage ./railgun { };
structured-haskell-mode = self.shm;
sv-kalender = callPackage ./sv-kalender { };

View File

@ -1,25 +0,0 @@
{ lib
, trivialBuild
, fetchFromGitHub
, emacs
}:
trivialBuild {
pname = "railgun";
version= "0.pre+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;
};
}