-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
22 lines (22 loc) · 839 Bytes
/
default.nix
File metadata and controls
22 lines (22 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, aeson, base, bytestring, containers, lens, lib
, modern-uri, network-uri, parsec, parser-combinators, text
, transformers, pkgs
, scrappy-core ? pkgs.haskellPackages.callPackage (pkgs.fetchFromGitHub {
owner = "TypifyDev";
repo = "scrappy-core";
rev = "913670f2f83cabb2b56302e17604ec488e89da7b";
sha256 = "sha256-qA6+5Lxsw5q0DWYNx0VnvCmYo2f2/oKvDPVH0ZNgfXc=";
}) {}
}:
mkDerivation {
pname = "scrappy-template";
version = "0.0.1";
src = ./.;
libraryHaskellDepends = [
aeson base bytestring containers lens modern-uri network-uri parsec
parser-combinators text transformers scrappy-core
];
homepage = "https://github.com/TypifyDev/scrappy";
description = "html pattern matching library and high-level interface concurrent requests lib for webscraping";
license = lib.licenses.bsd3;
}