Merge pull request #142895 from uniquepointer/your-editor
your-editor: init at 1203
This commit is contained in:
commit
f220223a16
3 changed files with 38 additions and 0 deletions
|
@ -11706,6 +11706,13 @@
|
||||||
fingerprint = "EE59 5E29 BB5B F2B3 5ED2 3F1C D276 FF74 6700 7335";
|
fingerprint = "EE59 5E29 BB5B F2B3 5ED2 3F1C D276 FF74 6700 7335";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
uniquepointer = {
|
||||||
|
email = "uniquepointer@mailbox.org";
|
||||||
|
matrix = "@uniquepointer:matrix.org";
|
||||||
|
github = "uniquepointer";
|
||||||
|
githubId = 71751817;
|
||||||
|
name = "uniquepointer";
|
||||||
|
};
|
||||||
unode = {
|
unode = {
|
||||||
email = "alves.rjc@gmail.com";
|
email = "alves.rjc@gmail.com";
|
||||||
matrix = "@renato_alves:matrix.org";
|
matrix = "@renato_alves:matrix.org";
|
||||||
|
|
29
pkgs/applications/editors/your-editor/default.nix
Normal file
29
pkgs/applications/editors/your-editor/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "your-editor";
|
||||||
|
version = "1203";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kammerdienerb";
|
||||||
|
repo = "yed";
|
||||||
|
rev = "608418f2037dc4ef5647e69fcef45302c50f138c";
|
||||||
|
sha256 = "KqK2lcDTn91aCFJIDg+h+QsTrl7745So5aiKCxPkeh4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
patchShebangs install.sh
|
||||||
|
./install.sh -p $out
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
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 = with maintainers; [ uniquepointer ];
|
||||||
|
mainProgram = "yed";
|
||||||
|
};
|
||||||
|
}
|
|
@ -29220,6 +29220,8 @@ with pkgs;
|
||||||
|
|
||||||
yoshimi = callPackage ../applications/audio/yoshimi { };
|
yoshimi = callPackage ../applications/audio/yoshimi { };
|
||||||
|
|
||||||
|
your-editor = callPackage ../applications/editors/your-editor { };
|
||||||
|
|
||||||
youtube-dl = with python3Packages; toPythonApplication youtube-dl;
|
youtube-dl = with python3Packages; toPythonApplication youtube-dl;
|
||||||
|
|
||||||
youtube-dl-light = with python3Packages; toPythonApplication youtube-dl-light;
|
youtube-dl-light = with python3Packages; toPythonApplication youtube-dl-light;
|
||||||
|
|
Loading…
Reference in a new issue