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

30 lines
802 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 = "1203";
src = fetchFromGitHub {
owner = "kammerdienerb";
repo = "yed";
2021-10-25 23:46:23 +02:00
rev = "608418f2037dc4ef5647e69fcef45302c50f138c";
2021-10-25 23:31:07 +02:00
sha256 = "KqK2lcDTn91aCFJIDg+h+QsTrl7745So5aiKCxPkeh4=";
};
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; {
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;
2021-10-25 23:46:23 +02:00
maintainers = with maintainers; [ uniquepointer ];
mainProgram = "yed";
2021-10-25 23:31:07 +02:00
};
}