nixpkgs-suyu/pkgs/applications/editors/your-editor/default.nix

31 lines
846 B
Nix
Raw Normal View History

2021-10-25 23:46:23 +02:00
{ lib, stdenv, fetchFromGitHub }:
2021-10-25 23:31:07 +02:00
2021-10-25 23:46:23 +02:00
stdenv.mkDerivation rec {
2021-10-25 23:31:07 +02:00
pname = "your-editor";
version = "1303";
2021-10-25 23:31:07 +02:00
src = fetchFromGitHub {
owner = "your-editor";
2021-10-25 23:31:07 +02:00
repo = "yed";
rev = version;
sha256 = "BWy/icQs8hVtNeM/mCi6LOah1UG0elU/DgCmfaIPD64=";
2021-10-25 23:31:07 +02:00
};
installPhase = ''
2021-10-25 23:46:23 +02:00
runHook preInstall
patchShebangs install.sh
2021-10-25 23:31:07 +02:00
./install.sh -p $out
2021-10-25 23:46:23 +02:00
runHook postInstall
2021-10-25 23:31:07 +02:00
'';
meta = with lib; {
2021-10-26 01:28:12 +02:00
description = "Your-editor (yed) is a small and simple terminal editor core that is meant to be extended through a powerful plugin architecture";
2021-10-25 23:31:07 +02:00
homepage = "https://your-editor.org/";
2021-12-09 02:55:14 +01:00
changelog = "https://github.com/your-editor/yed/blob/${version}/CHANGELOG.md";
2021-10-25 23:31:07 +02:00
license = with licenses; [ mit ];
platforms = platforms.unix;
2021-10-25 23:46:23 +02:00
maintainers = with maintainers; [ uniquepointer ];
mainProgram = "yed";
2021-10-25 23:31:07 +02:00
};
}