nix-scripts/artiq-fast/pkgs/libartiq-support.nix

14 lines
511 B
Nix
Raw Normal View History

{ stdenv, fetchgit, git, rustc }:
2019-03-31 22:18:36 +08:00
stdenv.mkDerivation rec {
name = "libartiq-support-${version}";
version = import ./artiq-version.nix { inherit stdenv fetchgit git; };
2019-03-31 22:18:36 +08:00
src = import ./artiq-src.nix { inherit fetchgit; };
phases = [ "buildPhase" ];
# keep in sync with artiq/test/lit/lit.cfg or remove build from the latter once we don't use buildbot/conda anymore
buildPhase =
''
mkdir $out
${rustc}/bin/rustc ${src}/artiq/test/libartiq_support/lib.rs --out-dir $out -Cpanic=unwind -g
'';
}