aboutsummaryrefslogtreecommitdiff
path: root/modules/pkgs/check_solr/cabal2nix.nix
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2018-12-11 18:10:48 +0300
committerIgor Pashev <pashev.igor@gmail.com>2018-12-11 18:10:48 +0300
commit8b0968b2054d3bb8d90b5ac056727f7c2ebeaed3 (patch)
treed03b70f693463fc836a8dbe4240424d2547530c8 /modules/pkgs/check_solr/cabal2nix.nix
parentc4273035cf5876e3ba8ed2c6b492d31c2de290ee (diff)
downloadnixsap-8b0968b2054d3bb8d90b5ac056727f7c2ebeaed3.tar.gz
(* HUGE *) Use nixpkgs overlays
Diffstat (limited to 'modules/pkgs/check_solr/cabal2nix.nix')
-rw-r--r--modules/pkgs/check_solr/cabal2nix.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/pkgs/check_solr/cabal2nix.nix b/modules/pkgs/check_solr/cabal2nix.nix
deleted file mode 100644
index 138062f..0000000
--- a/modules/pkgs/check_solr/cabal2nix.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ mkDerivation, aeson, base, base64-bytestring, bytestring, docopt
-, fetchgit, HTTP, http-conduit, nagios-check, raw-strings-qq
-, regex-tdfa, scientific, stdenv, text, unordered-containers
-}:
-mkDerivation {
- pname = "check-solr";
- version = "0.1.0";
- src = fetchgit {
- url = "https://github.com/ip1981/check-solr.git";
- sha256 = "0hama3kglnn4kyzkssl1llb61kcgyhynpbbk6xsf015hvi90hsa0";
- rev = "869c945fb56f0ff187125ee352a6876002eba596";
- };
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base base64-bytestring bytestring docopt HTTP http-conduit
- nagios-check raw-strings-qq regex-tdfa scientific text
- unordered-containers
- ];
- executableHaskellDepends = [ base docopt raw-strings-qq ];
- description = "Icinga / Nagios plugin for Solr";
- license = stdenv.lib.licenses.mit;
-}