-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
61 lines (57 loc) · 1.65 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
{
description = "Hydra Formal Specification in Agda";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
formal-ledger = {
url = "github:IntersectMBO/formal-ledger-specifications";
flake = false;
};
nixpkgs.url = "github:nixos/nixpkgs";
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"aarch64-darwin"
"x86_64-linux"
];
perSystem = { pkgs, ... }:
let
agdaPackages = pkgs.callPackage ./nix/initial-packages.nix {
inherit (pkgs.haskellPackages) Agda;
inherit (inputs) nixpkgs;
};
agdaLibraries = with agdaPackages;
[
abstract-set-theory
formal-ledger
standard-library
standard-library-classes
standard-library-meta
];
in
rec {
packages = {
hydra-spec-pdf = agdaPackages.mkDerivation {
pname = "hydra-spec.pdf";
version = "0.0.1";
nativeBuildInputs = with pkgs; [
(agdaPackages.withPackages agdaLibraries)
(haskellPackages.ghcWithPackages (p: [ p.shake ]))
inkscape
texlive.combined.scheme-full
];
meta = { };
src = ./.;
buildPhase = ''
shake
'';
installPhase = ''
mkdir $out
cp _build/hydra-spec.pdf $out/hydra-spec.pdf
'';
};
default = packages.hydra-spec-pdf;
};
};
};
}