summary refs log tree commit diff
path: root/pkgs/test/simple
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-26 17:31:54 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-26 17:31:54 +0200
commita133a74c8905c58721a2ae129c02c264bf6b3b09 (patch)
tree7e4d9f83318c331fbd161ca993082641b03eaedf /pkgs/test/simple
parent454eefa63b6f8fbd68139affd46d086e0d869ee3 (diff)
downloadnixpkgs-a133a74c8905c58721a2ae129c02c264bf6b3b09.tar
nixpkgs-a133a74c8905c58721a2ae129c02c264bf6b3b09.tar.gz
nixpkgs-a133a74c8905c58721a2ae129c02c264bf6b3b09.tar.bz2
nixpkgs-a133a74c8905c58721a2ae129c02c264bf6b3b09.tar.lz
nixpkgs-a133a74c8905c58721a2ae129c02c264bf6b3b09.tar.xz
nixpkgs-a133a74c8905c58721a2ae129c02c264bf6b3b09.tar.zst
nixpkgs-a133a74c8905c58721a2ae129c02c264bf6b3b09.zip
Remove cruft
Diffstat (limited to 'pkgs/test/simple')
-rw-r--r--pkgs/test/simple/default.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/test/simple/default.nix b/pkgs/test/simple/default.nix
deleted file mode 100644
index b7d9446bac7..00000000000
--- a/pkgs/test/simple/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-let {
-  system = "i686-linux";
-
-  stdenvs = (import ../../system/stdenvs.nix) {
-    inherit system;
-    allPackages = import ../../system/all-packages-generic.nix;
-  };
-
-  stdenv = stdenvs.stdenvNix;
-
-  test = stdenv.mkDerivation {
-    name = "simple-test";
-    builder = ./builder.sh;
-  };
-
-  body = test;
-}