Merge pull request #100345 from SeTSeR/foot-1.5.1

foot: 1.4.4 -> 1.5.1
This commit is contained in:
Jon 2020-10-13 20:01:52 -07:00 committed by GitHub
commit b62f286e3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 11 deletions

View file

@ -5,12 +5,12 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "foot"; pname = "foot";
version = "1.4.4"; version = "1.5.1";
src = fetchgit { src = fetchgit {
url = "https://codeberg.org/dnkl/foot.git"; url = "https://codeberg.org/dnkl/foot.git";
rev = "${version}"; rev = version;
sha256 = "1cr4sz075v18clh8nlvgyxlbvfkhbsg0qrqgnclip5rwa24ry1lg"; sha256 = "sha256-GAk2qkrgCNILJOeRcn1NT4t3w+R6WFTZ1goOhBEwKwc=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View file

@ -1,18 +1,18 @@
{ stdenv, lib, fetchgit, pkg-config, meson, ninja, scdoc { stdenv, lib, fetchgit, pkg-config, meson, ninja, scdoc
,freetype, fontconfig, pixman, tllist, check }: ,freetype, fontconfig, harfbuzz, pixman, tllist, check }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "fcft"; pname = "fcft";
version = "2.2.6"; version = "2.3.1";
src = fetchgit { src = fetchgit {
url = "https://codeberg.org/dnkl/fcft.git"; url = "https://codeberg.org/dnkl/fcft.git";
rev = "${version}"; rev = version;
sha256 = "06zywvvgrch9k4d07bir2sxddwsli2gzpvlvjfcwbrj3bw5x6j1b"; sha256 = "sha256-FD3KfaQbSEA1XdmS6YxH+c5fSsra9Ro/KKslb7Brv7U=";
}; };
nativeBuildInputs = [ pkg-config meson ninja scdoc ]; nativeBuildInputs = [ pkg-config meson ninja scdoc ];
buildInputs = [ freetype fontconfig pixman tllist ]; buildInputs = [ freetype fontconfig pixman tllist harfbuzz ];
checkInputs = [ check ]; checkInputs = [ check ];
mesonFlags = [ "--buildtype=release" ]; mesonFlags = [ "--buildtype=release" ];

View file

@ -2,18 +2,20 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tllist"; pname = "tllist";
version = "1.0.2"; version = "1.0.4";
src = fetchgit { src = fetchgit {
url = "https://codeberg.org/dnkl/tllist.git"; url = "https://codeberg.org/dnkl/tllist.git";
rev = "${version}"; rev = version;
sha256 = "095wly66z9n2r6h318rackgl4g1w9l1vj96367ngcw7rpva9yppl"; sha256 = "sha256-+u8p/VmI61SGRhZHaJBwgcVNetNOrYzg2NVQehbfRqg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
meson ninja meson ninja
]; ];
doCheck = true;
meta = with lib; { meta = with lib; {
homepage = "https://codeberg.org/dnkl/tllist"; homepage = "https://codeberg.org/dnkl/tllist";
description = "C header file only implementation of a typed linked list"; description = "C header file only implementation of a typed linked list";