libgrapheme: init at 2.0.2
This commit is contained in:
parent
d1a4939090
commit
4af152de2d
1 changed files with 25 additions and 0 deletions
25
pkgs/by-name/li/libgrapheme/package.nix
Normal file
25
pkgs/by-name/li/libgrapheme/package.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib, stdenv, fetchurl, buildPackages }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libgrapheme";
|
||||||
|
version = "2.0.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://dl.suckless.org/libgrapheme/libgrapheme-${version}.tar.gz";
|
||||||
|
hash = "sha256-pou93edr1Vul1kEWzl5CoT3wRcgcCFLemrYIlqoUMSU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||||
|
|
||||||
|
makeFlags = [ "AR:=$(AR)" "CC:=$(CC)" "RANLIB:=$(RANLIB)" "BUILD_CC=$(CC_FOR_BUILD)" ];
|
||||||
|
|
||||||
|
installFlags = [ "PREFIX=$(out)" "LDCONFIG=" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Unicode string library";
|
||||||
|
homepage = "https://libs.suckless.org/libgrapheme/";
|
||||||
|
license = licenses.isc;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ sikmir ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue