Skip to content
Snippets Groups Projects
Verified Commit a9b2ed2c authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

chore: debug flake.nix

parent b3f47071
No related branches found
No related tags found
No related merge requests found
......@@ -33,10 +33,13 @@
versionAndBuild = pkgs.runCommand "get-version-and-build" {
outputFiles = [ "version" "build" ];
} ''
ls -lah ${versionToolPackage}/bin/
} ''
set -x
mkdir -p $out
ls -lah $out
${versionToolPackage}/bin/version print --git > $out/version
${versionToolPackage}/bin/version build > $out/build
ls -lah $out
'';
version = builtins.readFile "${versionAndBuild}/version";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment