32
pkgs/development/libraries/libcangjie/default.nix
Normal file
32
pkgs/development/libraries/libcangjie/default.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ stdenv, autoconf, automake, libtool, m4, fetchurl, bash, pkgconfig, sqlite }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libcangjie-1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Cangjians/libcangjie/archive/v1.0.tar.gz";
|
||||
sha256 = "15la1pxa2fvhznlbkl32qp2cgd602bvrx2zmahybypbfik0cgqk1";
|
||||
};
|
||||
|
||||
buildInputs = [ automake autoconf libtool m4 pkgconfig sqlite ];
|
||||
|
||||
configureScript = "./autogen.sh";
|
||||
|
||||
preConfigure = ''
|
||||
find . -name '*.sh' -exec sed -e 's@#!/bin/bash@${bash}/bin/bash@' -i '{}' ';'
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "A C library implementing the Cangjie input method";
|
||||
longDescription = ''
|
||||
libcangjie is a library implementing the Cangjie input method.
|
||||
'';
|
||||
homepage = http://cangjians.github.io/projects/libcangjie/;
|
||||
license = "LGPLv3+";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.linquize ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
@@ -4588,6 +4588,8 @@ let
|
||||
|
||||
inherit (gnome3) libcroco;
|
||||
|
||||
libcangjie = callPackage ../development/libraries/libcangjie { };
|
||||
|
||||
libctemplate = callPackage ../development/libraries/libctemplate { };
|
||||
|
||||
libcue = callPackage ../development/libraries/libcue { };
|
||||
|
||||
Reference in New Issue
Block a user