Skip to content

Commit

Permalink
yudit: init at 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
doronbehar committed Sep 25, 2024
1 parent a7e62e6 commit e7baca7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/by-name/yu/yudit/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
lib,
stdenv,
fetchurl,
xorg,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "yudit";
version = "3.1.0";

src = fetchurl {
url = "https://www.yudit.org/download/yudit-${finalAttrs.version}.tar.gz";
hash = "sha256-oYgjTWEnNXaE9Sw9bGpLnY9avQ99tnJWa/RE73p85Vc=";
};

buildInputs = [
xorg.libX11
];

meta = {
description = "Free Unicode plain-text editor for Unix-like systems";
homepage = "https://www.yudit.org/";
changelog = "https://www.yudit.org/download/CHANGELOG.TXT";
mainProgram = "yudit";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ doronbehar ];
# Might work on Darwin but currently fails, and upstream doesn't officially
# supports it.
platforms = lib.platforms.linux;
};
})

0 comments on commit e7baca7

Please sign in to comment.