mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
22 lines
504 B
Nix
22 lines
504 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "prolog-mode-1.25";
|
|
|
|
src = fetchurl {
|
|
url = "http://bruda.ca/_media/emacs/prolog.el";
|
|
sha256 = "0hfd2dr3xc5qxgvc08nkb2l5a05hfldahdc6ymi9vd8798cc46yh";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/share/emacs/site-lisp/
|
|
cp $src $out/share/emacs/site-lisp/prolog.el
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://bruda.ca/emacs/prolog_mode_for_emacs/;
|
|
description = "Prolog mode for Emacs";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|