mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-06 23:31:34 +00:00
19 lines
402 B
Nix
19 lines
402 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
let version = "0.2"; in
|
|
stdenv.mkDerivation {
|
|
name = "fontconfig-penultimate-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ttuegel";
|
|
repo = "fontconfig-penultimate";
|
|
rev = version;
|
|
sha256 = "106sjfmxdn2cachgsg0ky3wi676x6nd14y5fcl16n82kghi3d9yf";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/etc/fonts/conf.d
|
|
cp *.conf $out/etc/fonts/conf.d
|
|
'';
|
|
}
|