mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
your-editor: init at 1203
This commit is contained in:
parent
2e4300bf8b
commit
fc25fa882e
36
pkgs/applications/editors/your-editor/default.nix
Normal file
36
pkgs/applications/editors/your-editor/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { }) {
|
||||
|
|
Loading…
Reference in a new issue