about summary refs log tree commit diff
path: root/pkgs/desktops/gnome/core
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2024-06-22 16:03:42 +0200
committerJan Tojnar <jtojnar@gmail.com>2024-07-01 08:26:49 +0200
commit87a6bb325c7094d0fcce02a98e1652ab77148014 (patch)
treefa5265f3a48f70f4dcf49d126f1afbc4020b7ae8 /pkgs/desktops/gnome/core
parent4f71ac51539fdd43a12d34cb06c9f330383baa58 (diff)
yelp-xsl: Move from gnome scope to top-level
Diffstat (limited to 'pkgs/desktops/gnome/core')
-rw-r--r--pkgs/desktops/gnome/core/yelp-xsl/default.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/desktops/gnome/core/yelp-xsl/default.nix b/pkgs/desktops/gnome/core/yelp-xsl/default.nix
deleted file mode 100644
index e440df2423bf3..0000000000000
--- a/pkgs/desktops/gnome/core/yelp-xsl/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{ lib, stdenv
-, gettext
-, fetchurl
-, pkg-config
-, itstool
-, libxml2
-, libxslt
-, gnome
-}:
-
-stdenv.mkDerivation rec {
-  pname = "yelp-xsl";
-  version = "42.1";
-
-  src = fetchurl {
-    url = "mirror://gnome/sources/yelp-xsl/${lib.versions.major version}/${pname}-${version}.tar.xz";
-    sha256 = "sha256-I4vhULFlMIDOE5lxMw/TbTomWV4NagQKLAML89IAW80=";
-  };
-
-  nativeBuildInputs = [
-    pkg-config
-    gettext
-    itstool
-    libxml2
-    libxslt
-  ];
-
-  doCheck = true;
-
-  passthru = {
-    updateScript = gnome.updateScript {
-      packageName = pname;
-      attrPath = "gnome.${pname}";
-    };
-  };
-
-  meta = with lib; {
-    homepage = "https://gitlab.gnome.org/GNOME/yelp-xsl";
-    description = "Yelp's universal stylesheets for Mallard and DocBook";
-    maintainers = teams.gnome.members;
-    license = with licenses; [
-      # See https://gitlab.gnome.org/GNOME/yelp-xsl/blob/master/COPYING
-      # Stylesheets
-      lgpl2Plus
-      # Icons, unclear: https://gitlab.gnome.org/GNOME/yelp-xsl/issues/25
-      gpl2
-      # highlight.js
-      bsd3
-    ];
-    platforms = platforms.unix;
-  };
-}