emacs.pkgs.sunrise-commander: refactor

This commit is contained in:
Anderson Torres 2023-06-10 19:48:27 -03:00
parent 817356b227
commit 4775531c49

View File

@ -4,13 +4,13 @@
, emacs
}:
trivialBuild rec {
trivialBuild {
pname = "sunrise-commander";
version = "0.pre+unstable=2021-09-27";
version = "unstable=2021-09-27";
src = fetchFromGitHub {
owner = pname;
repo = pname;
owner = "sunrise-commander";
repo = "sunrise-commander";
rev = "16e6df7e86c7a383fb4400fae94af32baf9cb24e";
hash = "sha256-D36qiRi5OTZrBtJ/bD/javAWizZ8NLlC/YP4rdLCSsw=";
};
@ -19,11 +19,11 @@ trivialBuild rec {
emacs
];
meta = with lib; {
meta = {
homepage = "https://github.com/sunrise-commander/sunrise-commander/";
description = "Orthodox (two-pane) file manager for Emacs";
license = licenses.gpl3Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.all;
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.AndersonTorres ];
platforms = lib.platforms.all;
};
}