libcangjie: switch to fetchFromGitLab & update homepage
This commit is contained in:
parent
33d3282770
commit
dc2909ec58
1 changed files with 7 additions and 5 deletions
|
@ -1,13 +1,15 @@
|
||||||
{ lib, stdenv, autoconf, automake, libtool, m4, fetchurl, bash, pkg-config, sqlite }:
|
{ lib, stdenv, autoconf, automake, libtool, m4, fetchFromGitLab, bash, pkg-config, sqlite }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libcangjie";
|
pname = "libcangjie";
|
||||||
version = "1.4_rev_${rev}";
|
version = "1.4_rev_${rev}";
|
||||||
rev = "a73c1d8783f7b6526fd9b2cc44a669ffa5518d3d";
|
rev = "a73c1d8783f7b6526fd9b2cc44a669ffa5518d3d";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitLab {
|
||||||
url = "https://github.com/Cangjians/libcangjie/archive/${rev}.tar.gz";
|
owner = "Cangjians";
|
||||||
sha256 = "0i5svvcx099fc9hh5dvr3gpb1041v6vn5fnylxy82zjy239114lg";
|
repo = "libcangjie";
|
||||||
|
inherit rev;
|
||||||
|
sha256 = "sha256-R7WqhxciaTxhTiwPp2EUNTOh477gi/Pj3VpMtat5qXw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
@ -26,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
libcangjie is a library implementing the Cangjie input method.
|
libcangjie is a library implementing the Cangjie input method.
|
||||||
'';
|
'';
|
||||||
homepage = "http://cangjians.github.io/projects/libcangjie/";
|
homepage = "https://gitlab.freedesktop.org/cangjie/libcangjie";
|
||||||
license = lib.licenses.lgpl3Plus;
|
license = lib.licenses.lgpl3Plus;
|
||||||
|
|
||||||
maintainers = [ lib.maintainers.linquize ];
|
maintainers = [ lib.maintainers.linquize ];
|
||||||
|
|
Loading…
Reference in a new issue