Unverified Commit f85803fd authored by Bobby Rong's avatar Bobby Rong
Browse files
parent e3590749
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
{ stdenv
, lib
, fetchFromGitHub
, fetchFromGitLab
, meson
, mesonEmulatorHook
, ninja
@@ -18,15 +18,17 @@

stdenv.mkDerivation rec {
  pname = "libgedit-tepl";
  version = "6.10.0";
  version = "6.11.0";

  outputs = [ "out" "dev" "devdoc" ];

  src = fetchFromGitHub {
    owner = "gedit-technology";
  src = fetchFromGitLab {
    domain = "gitlab.gnome.org";
    group = "World";
    owner = "gedit";
    repo = "libgedit-tepl";
    rev = version;
    hash = "sha256-lGmOaDNu+iqwpeaP0AL28exoTqx1j03Z8gdhTBgk1i8=";
    hash = "sha256-8y3EQZKYRcx2ocG7aR7tGBCE/68yPdrBcPNm6O2lM4c=";
  };

  strictDeps = true;
@@ -54,7 +56,7 @@ stdenv.mkDerivation rec {
  ];

  meta = with lib; {
    homepage = "https://github.com/gedit-technology/libgedit-tepl";
    homepage = "https://gitlab.gnome.org/World/gedit/libgedit-tepl";
    description = "Text editor product line";
    maintainers = with maintainers; [ manveru bobby285271 ];
    license = licenses.lgpl3Plus;