emacs.pkgs.railgun: Remove package

It doesn't build & seems unmaintained.
This commit is contained in:
adisbladis 2022-01-08 20:53:27 +13:00
parent 77f4bba941
commit 42a6888489
2 changed files with 0 additions and 27 deletions

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