-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathflake.nix
41 lines (38 loc) · 908 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
description = "A flake for packaging fonts";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
monaco = {
url = "github:thep0y/monaco-nerd-font";
flake = false;
};
};
outputs =
{
self,
nixpkgs,
flake-utils,
monaco,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages = {
monaco = pkgs.stdenv.mkDerivation {
pname = "monaco NF";
version = "0.2.1";
src = monaco;
installPhase = ''
mkdir -p $out/share/fonts/opentype
find $src -type f -name "*.ttf" -exec cp {} $out/share/fonts/opentype/ \;
'';
};
};
defaultPackage = self.packages.${system}.monaco;
}
);
}