-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
121 lines (107 loc) · 3.54 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
description = "Scores from the Beale Street Sucks EP by Naptaker";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
gridly = {
flake = false;
url = "github:openlilylib/gridly";
};
naptaker = {
flake = false;
url = "github:naptaker/naptaker/lilypond-2.24";
};
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
oll-core = {
flake = false;
url = "github:openlilylib/oll-core";
};
pre-commit-hooks-nix.url = "github:cachix/pre-commit-hooks.nix";
treefmt-nix.url = "github:numtide/treefmt-nix";
};
outputs = inputs@{ flake-parts, nixpkgs, self, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.flake-parts.flakeModules.easyOverlay
inputs.pre-commit-hooks-nix.flakeModule
inputs.treefmt-nix.flakeModule
];
systems = [
"x86_64-linux"
];
perSystem = { config, pkgs, self', system, ... }: {
_module.args.pkgs = import nixpkgs {
config.allowUnfreePredicate = pkg:
nixpkgs.lib.hasPrefix "beale-street-sucks-ep" (nixpkgs.lib.getName pkg);
overlays = [
(_final: prev: {
inherit (self.packages.${prev.stdenv.hostPlatform.system})
lilypond-with-libs
oll-lib
;
})
];
inherit system;
};
overlayAttrs = config.packages;
devShells.default = with pkgs; mkShell {
LILYPOND_SHARE_DIR = "${lilypond-with-libs}/share";
buildInputs = [
(frescobaldi.override {
lilypond = lilypond-with-libs;
})
lilypond-with-libs
nixpkgs-fmt
timidity
];
};
packages =
let
beale-street-sucks-ep = pkgs.callPackage ./. {
lilypond = pkgs.lilypond-with-fonts;
};
in
{
inherit beale-street-sucks-ep;
default = self'.packages.beale-street-sucks-ep;
lilypond-with-libs = with pkgs; lib.appendToName "with-libs" (symlinkJoin rec {
inherit (lilypond) meta name version;
paths = [
lilypond
self'.packages.oll-lib
openlilylib-fonts.improviso
];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
for binary in "$out"/bin/*; do
wrapProgram "$binary" \
--set LILYPOND_DATADIR "$out"/share/lilypond/${lilypond.version}
done
'';
});
oll-lib = pkgs.stdenv.mkDerivation {
pname = "oll-lib";
version = "20230821";
dontUnpack = true;
dontBuild = true;
installPhase = ''
local LILYPOND_DATADIR="$out"/share/lilypond/${pkgs.lilypond.version}
mkdir -p "$LILYPOND_DATADIR"/ly
cp -rv ${inputs.gridly} "$LILYPOND_DATADIR"/ly/gridly
cp -rv ${inputs.naptaker} "$LILYPOND_DATADIR"/ly/naptaker
cp -rv ${inputs.oll-core} "$LILYPOND_DATADIR"/ly/oll-core
'';
};
} // beale-street-sucks-ep.passthru;
pre-commit.settings.hooks = {
treefmt.enable = true;
};
treefmt = {
projectRootFile = ./flake.nix;
programs = {
deadnix.enable = true;
nixpkgs-fmt.enable = true;
};
};
};
};
}