nixpkgs/pkgs/applications/editors/your-editor/default.nix
2021-10-25 18:04:22 -05:00

37 lines
830 B
Nix

{ 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 ];
};
}