diff options
author | lassulus <lassulus@lassul.us> | 2017-12-30 11:36:15 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-12-30 11:36:15 +0100 |
commit | c1ff2ddf713242f34a56861c34d815ae6985798b (patch) | |
tree | a12734de3e7f99b58e87560317f383ed6bdd9c41 /makefu/source.nix | |
parent | dd817f9e26ee2aeae839dddc73b869d218a337cb (diff) | |
parent | 9d4436644115c2cc5c130d9c210c201bb506c789 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/source.nix')
-rw-r--r-- | makefu/source.nix | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/makefu/source.nix b/makefu/source.nix index ce5855430..fde1d9680 100644 --- a/makefu/source.nix +++ b/makefu/source.nix @@ -4,7 +4,9 @@ host@{ name, secure ? false, full ? false, torrent ? false, - musnix ? false + hw ? false, + musnix ? false, + python ? false }: let builder = if getEnv "dummy_secrets" == "true" @@ -45,6 +47,20 @@ in ref = "d8b989f"; }; }) + + (mkIf ( hw ) { + nixos-hardware.git = { + url = https://github.com/nixos/nixos-hardware.git; + ref = "8a05dc9"; + }; + }) + + (mkIf ( python ) { + python.git = { + url = https://github.com/garbas/nixpkgs-python; + ref = "cac319b"; + }; + }) (mkIf ( torrent ) { torrent-secrets.file = getAttr builder { buildbot = toString <stockholm/makefu/6tests/data/secrets>; |