Maintainers: Add uniquepointer

main
uniquepointer 3 years ago
parent fc25fa882e
commit 14c8bf8743
  1. 7
      maintainers/maintainer-list.nix
  2. 23
      pkgs/applications/editors/your-editor/default.nix
  3. 4
      pkgs/top-level/all-packages.nix

@ -11706,6 +11706,13 @@
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 = {
email = "alves.rjc@gmail.com";
matrix = "@renato_alves:matrix.org";

@ -1,29 +1,21 @@
{ pkgs, stdenv, fetchFromGitHub, lib, ... }:
{ lib, stdenv, fetchFromGitHub }:
pkgs.stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
pname = "your-editor";
version = "1203";
rev = "608418f2037dc4ef5647e69fcef45302c50f138c";
src = fetchFromGitHub {
owner = "kammerdienerb";
repo = "yed";
rev = "608418f";
rev = "608418f2037dc4ef5647e69fcef45302c50f138c";
sha256 = "KqK2lcDTn91aCFJIDg+h+QsTrl7745So5aiKCxPkeh4=";
};
buildInputs = [
];
configurePhase = ''
'';
buildPhase = ''
'';
installPhase = ''
patchShebangs install.sh
runHook preInstall
patchShebangs install.sh
./install.sh -p $out
runHook postInstall
'';
meta = with lib; {
@ -31,6 +23,7 @@ pkgs.stdenv.mkDerivation rec {
homepage = "https://your-editor.org/";
license = with licenses; [ mit ];
platforms = platforms.linux;
maintainers = [ uniquepointer ];
maintainers = with maintainers; [ uniquepointer ];
mainProgram = "yed";
};
}

@ -29220,6 +29220,8 @@ with pkgs;
yoshimi = callPackage ../applications/audio/yoshimi { };
your-editor = callPackage ../applications/editors/your-editor { };
youtube-dl = with python3Packages; toPythonApplication youtube-dl;
youtube-dl-light = with python3Packages; toPythonApplication youtube-dl-light;
@ -33118,8 +33120,6 @@ 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…
Cancel
Save