nixpkgs/pkgs/development/libraries/libschrift/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
692 B
Nix
Raw Normal View History

2021-02-01 14:57:18 +00:00
{ lib, stdenv, fetchFromGitHub, fetchpatch }:
stdenv.mkDerivation rec {
pname = "libschrift";
2022-02-26 14:01:20 +00:00
version = "0.10.1";
src = fetchFromGitHub {
owner = "tomolt";
repo = pname;
2022-02-26 14:01:20 +00:00
rev = "v" + version;
sha256 = "0fvji0z6z2al68p07w58l4hc29ds68v71h7z84vxiqhxnsgc0hlv";
};
postPatch = ''
substituteInPlace config.mk \
--replace "PREFIX = /usr/local" "PREFIX = $out"
'';
makeFlags = [ "libschrift.a" ];
meta = with lib; {
homepage = "https://github.com/tomolt/libschrift";
description = "A lightweight TrueType font rendering library";
license = licenses.isc;
platforms = platforms.all;
maintainers = [ maintainers.sternenseemann ];
};
}