about summary refs log tree commit diff
path: root/pkgs/development/idris-modules/http.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-07-02 05:18:21 +0200
committerSilvan Mosberger <infinisil@icloud.com>2018-07-02 06:13:01 +0200
commitb73f540beb28741163768e04e629c611b397acdf (patch)
tree4b1324871e8aa6ea4b09e34ae996a51e83c13625 /pkgs/development/idris-modules/http.nix
parente79b302f894d8ee34b6579329a254b56f29240c4 (diff)
downloadnixlib-b73f540beb28741163768e04e629c611b397acdf.tar
nixlib-b73f540beb28741163768e04e629c611b397acdf.tar.gz
nixlib-b73f540beb28741163768e04e629c611b397acdf.tar.bz2
nixlib-b73f540beb28741163768e04e629c611b397acdf.tar.lz
nixlib-b73f540beb28741163768e04e629c611b397acdf.tar.xz
nixlib-b73f540beb28741163768e04e629c611b397acdf.tar.zst
nixlib-b73f540beb28741163768e04e629c611b397acdf.zip
idrisPackages: Clean up packages
Diffstat (limited to 'pkgs/development/idris-modules/http.nix')
-rw-r--r--pkgs/development/idris-modules/http.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/development/idris-modules/http.nix b/pkgs/development/idris-modules/http.nix
index 800a3a2eeb49..beec74a2f657 100644
--- a/pkgs/development/idris-modules/http.nix
+++ b/pkgs/development/idris-modules/http.nix
@@ -1,17 +1,15 @@
 { build-idris-package
 , fetchFromGitHub
-, prelude
 , contrib
 , lightyear
 , bytes
 , lib
-, idris
 }:
 build-idris-package  {
   name = "http";
   version = "2018-02-25";
 
-  idrisDeps = [ prelude contrib lightyear bytes ];
+  idrisDeps = [ contrib lightyear bytes ];
 
   src = fetchFromGitHub {
     owner = "uwap";
@@ -25,6 +23,5 @@ build-idris-package  {
     homepage = https://github.com/uwap/idris-http;
     license = lib.licenses.bsd2;
     maintainers = [ lib.maintainers.brainrape ];
-    inherit (idris.meta) platforms;
   };
 }