your-editor: init at 1203

This commit is contained in:
uniquepointer 2021-10-25 16:31:07 -05:00
parent 2e4300bf8b
commit fc25fa882e
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ pkgs, stdenv, fetchFromGitHub, lib, ... }:
pkgs.stdenv.mkDerivation rec {
pname = "your-editor";
version = "1203";
rev = "608418f2037dc4ef5647e69fcef45302c50f138c";
src = fetchFromGitHub {
owner = "kammerdienerb";
repo = "yed";
rev = "608418f";
sha256 = "KqK2lcDTn91aCFJIDg+h+QsTrl7745So5aiKCxPkeh4=";
};
buildInputs = [
];
configurePhase = ''
'';
buildPhase = ''
'';
installPhase = ''
patchShebangs install.sh
./install.sh -p $out
'';
meta = with lib; {
description = "Your-editor (yed) is a small and simple terminal editor core that is meant to be extended through a powerful plugin architecture.";
homepage = "https://your-editor.org/";
license = with licenses; [ mit ];
platforms = platforms.linux;
maintainers = [ uniquepointer ];
};
}

View File

@ -33118,6 +33118,8 @@ with pkgs;
yapesdl = callPackage ../misc/emulators/yapesdl { };
your-editor = callPackage ../applications/editors/your-editor { };
x16-emulator = callPackage ../misc/emulators/commanderx16/emulator.nix { };
x16-rom = callPackage ../misc/emulators/commanderx16/rom.nix { };
x16-run = (callPackage ../misc/emulators/commanderx16/run.nix { }) {