summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/eap8021x/default.nix
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-05-03 21:17:14 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-05-06 07:20:03 +0000
commit295815bec71ccee51cbc35582e7300df00c7fd6b (patch)
tree2c3f09e5cd80868191cdf12e71b2188029c7c43f /pkgs/os-specific/darwin/apple-source-releases/eap8021x/default.nix
parent5f65ec3f22877fb1c808025e75c915293e91e763 (diff)
downloadnixpkgs-295815bec71ccee51cbc35582e7300df00c7fd6b.tar
nixpkgs-295815bec71ccee51cbc35582e7300df00c7fd6b.tar.gz
nixpkgs-295815bec71ccee51cbc35582e7300df00c7fd6b.tar.bz2
nixpkgs-295815bec71ccee51cbc35582e7300df00c7fd6b.tar.lz
nixpkgs-295815bec71ccee51cbc35582e7300df00c7fd6b.tar.xz
nixpkgs-295815bec71ccee51cbc35582e7300df00c7fd6b.tar.zst
nixpkgs-295815bec71ccee51cbc35582e7300df00c7fd6b.zip
treewide: Remove phases
Diffstat (limited to 'pkgs/os-specific/darwin/apple-source-releases/eap8021x/default.nix')
-rw-r--r--pkgs/os-specific/darwin/apple-source-releases/eap8021x/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/os-specific/darwin/apple-source-releases/eap8021x/default.nix b/pkgs/os-specific/darwin/apple-source-releases/eap8021x/default.nix
index af9493fe32e..c8a40a20c9d 100644
--- a/pkgs/os-specific/darwin/apple-source-releases/eap8021x/default.nix
+++ b/pkgs/os-specific/darwin/apple-source-releases/eap8021x/default.nix
@@ -1,11 +1,9 @@
 { stdenv, appleDerivation }:
 
 appleDerivation {
-  phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
-
   installPhase = ''
     mkdir -p $out/Library/Frameworks/EAP8021X.framework/Headers
 
     cp EAP8021X.fproj/EAPClientProperties.h $out/Library/Frameworks/EAP8021X.framework/Headers
   '';
-}
\ No newline at end of file
+}