blob: 3fa66faf8ce74b745678eccc4cbb3b645e425b49 (
plain)
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
|
{
description = "A sisu like parser and document generator";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs";
#nixpkgs.url = "/nixpkgs-ra/nixpkgs";
};
outputs = { self, nixpkgs, flake-utils }: {
packages.x86_64-linux.spine =
let
pkgs = import nixpkgs {
system = "x86_64-linux";
};
#targetOf = package: "${package.targetPath or "."}/${package.targetName or package.name}";
in pkgs.stdenv.mkDerivation {
pname = "spine";
version = "0.11.3";
description = "A sisu like parser and document generator";
inherit self;
src = self;
shell = ./shell.nix;
buildPhase = ''
runHook preBuild
HOME="$PWD"
DFLAGS="-O2 -inline"
for DC_ in dmd ldmd2 gdmd; do
echo "- check for D compiler $DC_"
DC=$(type -P $DC_ || echo "")
if [ ! "$DC" == "" ]; then
break
fi
done
if [ "$DC" == "" ]; then
exit "Error: could not find D compiler"
fi
echo "$DC_ used as D compiler to build $pname"
dub build --compiler=$DC --build=release --combined --skip-registry=all
runHook postBuild
'';
checkPhase = ''
runHook preCheck
HOME="$PWD"
dub test --combined --skip-registry=all
runHook postCheck
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin
install -m755 ./bin/spine $out/bin/spine
#cp -r bin/spine $out/bin/.
runHook postInstall
'';
postInstall = ''
echo "nix build or nix develop? (suggestions):"
echo '- nix build'
echo ' nix build .#spine --print-build-logs'
echo ' nix build --print-build-logs'
echo '- nix run'
echo ' nix run .#spine --print-build-logs'
echo ' nix run default.nix --print-build-logs'
echo '- nix shell'
echo ' nix shell --print-build-logs --command spine -v'
echo '- nix develop'
echo ' nix develop --build -f derivation.nix -I .envrc --print-build-logs'
echo ' nix develop ; eval "$buildPhase"'
echo 'spine -v'
echo 'nix-instantiate | nix show-derivation | jq'
echo `ls -la $out/bin/spine`
echo "built:"
$out/bin/spine -v
'';
nativeBuildInputs = with pkgs; [
ldc dub
];
buildInputs = with pkgs; [
sqlite
];
};
packages.x86_64-linux.default = self.packages.x86_64-linux.spine;
};
}
|