diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-14 18:50:46 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-14 18:50:46 +0100 |
commit | 836d8c1ef3295a34c591324ef4c8ec48687279ee (patch) | |
tree | 4829c3da433040b45af11fd76caa5225472629b4 /default.nix | |
parent | 77878f5af7c3d1ca001ec610dbedda85ce9b9174 (diff) | |
download | nextpnr-836d8c1ef3295a34c591324ef4c8ec48687279ee.tar.gz nextpnr-836d8c1ef3295a34c591324ef4c8ec48687279ee.tar.bz2 nextpnr-836d8c1ef3295a34c591324ef4c8ec48687279ee.zip |
Revert "Add Nix(OS) support"
This reverts commit 7db6817a0b5afcf89e3c7eafc031a7eec59ee24e.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/default.nix b/default.nix deleted file mode 100644 index 664e3669..00000000 --- a/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -# -# nextpnr -- Next Generation Place and Route -# -# Copyright (C) 2018 Serge Bazanski <q3k@symbioticeda.com> -# -# Permission to use, copy, modify, and/or distribute this software for any -# purpose with or without fee is hereby granted, provided that the above -# copyright notice and this permission notice appear in all copies. -# -# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - - -with import <nixpkgs> {}; - -stdenv.mkDerivation rec { - name = "env"; - env = buildEnv { name = name; paths = buildInputs; }; - buildInputs = [ - ( import ./nextpnr.nix ) - ]; -} |