summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/removefile
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/removefile
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/removefile')
-rw-r--r--pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix b/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix
index 315f93bef08..8baf62dba01 100644
--- a/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix
+++ b/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix
@@ -1,10 +1,8 @@
 { stdenv, appleDerivation }:
 
 appleDerivation {
-  phases = [ "unpackPhase" "installPhase" ];
-
   installPhase = ''
     mkdir -p $out/include/
     cp removefile.h checkint.h $out/include/
   '';
-}
\ No newline at end of file
+}