diff options
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/default.nix b/default.nix index 2d341d8..4532dbf 100644 --- a/default.nix +++ b/default.nix @@ -1,8 +1,8 @@ { pkgs ? import <nixpkgs> {} , llvmPackages ? pkgs.llvmPackages_20 , lld ? pkgs.lld_20 -, stdenv ? pkgs.llvmPackages_20.stdenv -, clang-tools ? pkgs.llvmPackages_20.clang-tools +, stdenv ? llvmPackages.stdenv +, clang-tools ? llvmPackages.clang-tools , gasp ? (import ((builtins.fetchGit { url = "git@git.keldu.de:apps/gasp"; ref = "master"; @@ -14,7 +14,7 @@ }: let - version = "0.0.0"; + version = "0.0.1"; in rec { forstio = { core = pkgs.callPackage modules/core/.nix/derivation.nix { @@ -28,9 +28,9 @@ in rec { inherit forstio; inherit stdenv; inherit clang-tools; - }; - - crypto = pkgs.callPackage modules/crypto/.nix/derivation.nix { + }; + + crypto = pkgs.callPackage modules/crypto/.nix/derivation.nix { inherit version; inherit forstio; inherit stdenv; |
