3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/emacs/elisp-packages/ebuild-mode/default.nix

18 lines
434 B
Nix
Raw Normal View History

2021-06-28 14:53:14 +01:00
{ lib, trivialBuild, fetchurl }:
trivialBuild rec {
pname = "ebuild-mode";
2021-09-03 14:43:30 +01:00
version = "1.53";
2021-06-28 14:53:14 +01:00
src = fetchurl {
2021-07-17 00:34:16 +01:00
url = "https://dev.gentoo.org/~ulm/emacs/${pname}-${version}.tar.xz";
2021-09-03 14:43:30 +01:00
sha256 = "1l740qp71df9ids0c49kvp942rk8k1rfkg1hyv7ysfns5shk7b9l";
2021-06-28 14:53:14 +01:00
};
meta = with lib; {
description = "Major modes for Gentoo package files";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ qyliss ];
};
}