pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / yu / yudit / package.nix
blobe7131c8c54d094bb1282814e601604fb8962e234
2   lib,
3   stdenv,
4   fetchurl,
5   xorg,
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "yudit";
10   version = "3.1.0";
12   src = fetchurl {
13     url = "https://www.yudit.org/download/yudit-${finalAttrs.version}.tar.gz";
14     hash = "sha256-oYgjTWEnNXaE9Sw9bGpLnY9avQ99tnJWa/RE73p85Vc=";
15   };
17   buildInputs = [
18     xorg.libX11
19   ];
21   meta = {
22     description = "Free Unicode plain-text editor for Unix-like systems";
23     homepage = "https://www.yudit.org/";
24     changelog = "https://www.yudit.org/download/CHANGELOG.TXT";
25     mainProgram = "yudit";
26     license = lib.licenses.gpl2Plus;
27     maintainers = with lib.maintainers; [ doronbehar ];
28     # Might work on Darwin but currently fails, and upstream doesn't officially
29     # supports it.
30     platforms = lib.platforms.linux;
31   };