diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2018-12-11 18:10:48 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2018-12-11 18:10:48 +0300 |
commit | 8b0968b2054d3bb8d90b5ac056727f7c2ebeaed3 (patch) | |
tree | d03b70f693463fc836a8dbe4240424d2547530c8 /modules/pkgs/hoogle | |
parent | c4273035cf5876e3ba8ed2c6b492d31c2de290ee (diff) | |
download | nixsap-8b0968b2054d3bb8d90b5ac056727f7c2ebeaed3.tar.gz |
(* HUGE *) Use nixpkgs overlays
Diffstat (limited to 'modules/pkgs/hoogle')
-rw-r--r-- | modules/pkgs/hoogle/default.nix | 9 | ||||
-rw-r--r-- | modules/pkgs/hoogle/main.nix | 28 |
2 files changed, 0 insertions, 37 deletions
diff --git a/modules/pkgs/hoogle/default.nix b/modules/pkgs/hoogle/default.nix deleted file mode 100644 index 4ff5095..0000000 --- a/modules/pkgs/hoogle/default.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ haskell, haskellPackages }: - -let myHaskellPkgs = haskellPackages.override { - overrides = self: super: { - }; -}; - -in haskell.lib.justStaticExecutables (myHaskellPkgs.callPackage ./main.nix {}) - diff --git a/modules/pkgs/hoogle/main.nix b/modules/pkgs/hoogle/main.nix deleted file mode 100644 index 9c9a682..0000000 --- a/modules/pkgs/hoogle/main.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ mkDerivation, aeson, base, binary, bytestring, cmdargs, conduit -, conduit-extra, connection, containers, deepseq, directory, extra -, filepath, haskell-src-exts, http-conduit, http-types, js-flot -, js-jquery, mmap, network, network-uri, old-locale, process -, process-extras, QuickCheck, resourcet, stdenv, tar -, template-haskell, text, time, transformers, uniplate, utf8-string -, vector, wai, wai-logger, warp, warp-tls, zlib -}: -mkDerivation { - pname = "hoogle"; - version = "5.0.13"; - sha256 = "1wxdzkifgm3bnpzr45sf49dyqwnb8bnc5wmqbv5yhxv19gmjk8kn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring cmdargs conduit conduit-extra - connection containers deepseq directory extra filepath - haskell-src-exts http-conduit http-types js-flot js-jquery mmap - network network-uri old-locale process process-extras QuickCheck - resourcet tar template-haskell text time transformers uniplate - utf8-string vector wai wai-logger warp warp-tls zlib - ]; - executableHaskellDepends = [ base ]; - testTarget = "--test-option=--no-net"; - homepage = "http://hoogle.haskell.org/"; - description = "Haskell API Search"; - license = stdenv.lib.licenses.bsd3; -} |