forked from M-Labs/artiq
nix: cleanup
This commit is contained in:
parent
2de1eaa521
commit
f0f50bf1dc
|
@ -1,7 +1,6 @@
|
||||||
{runScript ? "bash", extraProfile ? ""}:
|
{ pkgs ? import <nixpkgs> {}}:
|
||||||
|
|
||||||
let
|
let
|
||||||
pkgs = import <nixpkgs> {};
|
|
||||||
artiqpkgs = import ./default.nix { inherit pkgs; };
|
artiqpkgs = import ./default.nix { inherit pkgs; };
|
||||||
in
|
in
|
||||||
pkgs.buildFHSUserEnv {
|
pkgs.buildFHSUserEnv {
|
||||||
|
@ -30,8 +29,7 @@ in
|
||||||
openocd
|
openocd
|
||||||
])
|
])
|
||||||
);
|
);
|
||||||
runScript = runScript;
|
|
||||||
profile = ''
|
profile = ''
|
||||||
export TARGET_AR=${artiqpkgs.binutils-or1k}/bin/or1k-linux-ar
|
export TARGET_AR=${artiqpkgs.binutils-or1k}/bin/or1k-linux-ar
|
||||||
'' + extraProfile;
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,6 @@
|
||||||
# nix-build -E "with import <nixpkgs> {}; callPackage ./conda-build.nix {}"
|
{ pkgs ? import <nixpkgs> {}}:
|
||||||
|
|
||||||
{ stdenv
|
with pkgs;
|
||||||
, fetchurl
|
|
||||||
, runCommand
|
|
||||||
, buildFHSUserEnv
|
|
||||||
, libselinux
|
|
||||||
, xorg
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
condaDeps = [ stdenv.cc xorg.libSM xorg.libICE xorg.libXrender libselinux ];
|
condaDeps = [ stdenv.cc xorg.libSM xorg.libICE xorg.libXrender libselinux ];
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
{ pkgs ? import <nixpkgs> {}}:
|
{ pkgs ? import <nixpkgs> {}}:
|
||||||
with pkgs;
|
|
||||||
let
|
let
|
||||||
artiqPkgs = import ./default.nix {};
|
artiqPkgs = import ./default.nix { inherit pkgs; };
|
||||||
jobs = rec {
|
jobs = rec {
|
||||||
conda-artiq = callPackage ./conda-build.nix {};
|
conda-artiq = import ./conda-build.nix { inherit pkgs; };
|
||||||
} // artiqPkgs;
|
} // artiqPkgs;
|
||||||
in
|
in
|
||||||
jobs
|
jobs
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
|
{ pkgs ? import <nixpkgs> {}}:
|
||||||
|
|
||||||
let
|
let
|
||||||
artiq-dev = import ./artiq-dev.nix {};
|
artiq-dev = import ./artiq-dev.nix { inherit pkgs; };
|
||||||
in
|
in
|
||||||
artiq-dev.env
|
artiq-dev.env
|
||||||
|
|
Loading…
Reference in New Issue