Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Dec 10, 2023
1 parent 2678e41 commit 67180e3
Show file tree
Hide file tree
Showing 34 changed files with 1,260 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "adblock2privoxy"; version = "2.1.1"; };
license = "GPL-3.0-only";
copyright = "";
maintainer = "Steven Thomas Smith <[email protected]>";
author = "Alexey Zubritsky <[email protected]>, Steven Thomas Smith <[email protected]>";
homepage = "https://github.com/essandess/adblock2privoxy";
url = "";
synopsis = "Convert adblock config files to privoxy format";
description = "AdBlock Plus browser plugin has great block list files provided by big community,\nbut it is client software and cannot work on a server as proxy.\n\nPrivoxy proxy has good potential to block ads at server side,\nbut it experiences acute shortage of updated block lists.\n\nThis software converts adblock lists to privoxy config files format.\n\nAlmost all adblock features are supported including\n\n* block/unblock requests (on privoxy)\n\nall syntax features are supported except for regex templates matching host name\n\n* hide/unhide page elements (via CSS)\n\nall syntax features are supported\n\n* all block request options except for outdated ones:\n\nSupported: script, image, stylesheet, object, xmlhttprequest, object-subrequest, subdocument,\ndocument, elemhide, other, popup, third-party, domain=..., match-case, donottrack\n\nUnsupported: collapse, background, xbl, ping and dtd";
buildType = "Simple";
};
components = {
exes = {
"adblock2privoxy" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."MissingH" or (errorHandler.buildDepError "MissingH"))
(hsPkgs."parsec-permutation" or (errorHandler.buildDepError "parsec-permutation"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."old-locale" or (errorHandler.buildDepError "old-locale"))
(hsPkgs."strict" or (errorHandler.buildDepError "strict"))
(hsPkgs."network" or (errorHandler.buildDepError "network"))
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."network-uri" or (errorHandler.buildDepError "network-uri"))
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "aeson-value-parser"; version = "0.19.7.2"; };
license = "MIT";
copyright = "(c) 2015, Sannsyn AS";
maintainer = "Nikita Volkov <[email protected]>";
author = "Nikita Volkov <[email protected]>";
homepage = "https://github.com/sannsyn/aeson-value-parser";
url = "";
synopsis = "API for parsing \"aeson\" JSON tree into Haskell types";
description = "A flexible parser DSL of JSON AST produced by the \\\"aeson\\\" library\nwith automated and highly detailed error reporting.\nProvides a featureful toolkit for parsing real-world documents with schemas\nof any complexity or ambiguity, which the \"FromJSON\" instances\nare simply not fit for.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "attoparsec-data"; version = "1.0.5.4"; };
license = "MIT";
copyright = "(c) 2017, Nikita Volkov";
maintainer = "Nikita Volkov <[email protected]>";
author = "Nikita Volkov <[email protected]>";
homepage = "https://github.com/nikita-volkov/attoparsec-data";
url = "";
synopsis = "Parsers for the standard Haskell data types";
description = "Collection of parsers for various common data formats.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
(hsPkgs."attoparsec-time" or (errorHandler.buildDepError "attoparsec-time"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."uuid" or (errorHandler.buildDepError "uuid"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "attoparsec-time"; version = "1.0.3.1"; };
license = "MIT";
copyright = "(c) 2017, Nikita Volkov";
maintainer = "Nikita Volkov <[email protected]>";
author = "Nikita Volkov <[email protected]>";
homepage = "https://github.com/nikita-volkov/attoparsec-time";
url = "";
synopsis = "Attoparsec parsers of time";
description = "A collection of Attoparsec parsers for the \\\"time\\\" library";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "domain"; version = "0.1.1.5"; };
license = "MIT";
copyright = "(c) 2020 Nikita Volkov";
maintainer = "Nikita Volkov <[email protected]>";
author = "Nikita Volkov <[email protected]>";
homepage = "https://github.com/nikita-volkov/domain";
url = "";
synopsis = "Codegen helping you define domain models";
description = "- For introduction and demo skip to [Readme](#readme).\n- For documentation and syntax reference see the \"Domain.Docs\" module.\n- For API documentation refer to the \"Domain\" module,\nwhich exports the whole API of this package.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."domain-core" or (errorHandler.buildDepError "domain-core"))
(hsPkgs."foldl" or (errorHandler.buildDepError "foldl"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."parser-combinators" or (errorHandler.buildDepError "parser-combinators"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."th-lego" or (errorHandler.buildDepError "th-lego"))
(hsPkgs."yaml-unscrambler" or (errorHandler.buildDepError "yaml-unscrambler"))
];
buildable = true;
};
tests = {
"loading-demo" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."domain" or (errorHandler.buildDepError "domain"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
"inline-demo" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."domain" or (errorHandler.buildDepError "domain"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
"test" = {
depends = [
(hsPkgs."domain" or (errorHandler.buildDepError "domain"))
(hsPkgs."domain-core" or (errorHandler.buildDepError "domain-core"))
(hsPkgs."rerebase" or (errorHandler.buildDepError "rerebase"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."template-haskell-compat-v0208" or (errorHandler.buildDepError "template-haskell-compat-v0208"))
(hsPkgs."th-orphans" or (errorHandler.buildDepError "th-orphans"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "domain-core"; version = "0.1.0.4"; };
license = "MIT";
copyright = "(c) 2020 Nikita Volkov";
maintainer = "Nikita Volkov <[email protected]>";
author = "Nikita Volkov <[email protected]>";
homepage = "https://github.com/nikita-volkov/domain-core";
url = "";
synopsis = "Low-level API of \"domain\"";
description = "Use this package for defining extensions to \\\"domain\\\".\nPrimarily derivers.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."th-lego" or (errorHandler.buildDepError "th-lego"))
(hsPkgs."th-lift-instances" or (errorHandler.buildDepError "th-lift-instances"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "irc"; version = "0.6.1.1"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "[email protected]";
author = "Trevor Elliott";
homepage = "";
url = "";
synopsis = "A small library for parsing IRC messages.";
description = "A set of combinators and types for parsing IRC messages.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
];
buildable = true;
};
tests = {
"Main" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."test-framework" or (errorHandler.buildDepError "test-framework"))
(hsPkgs."test-framework-quickcheck2" or (errorHandler.buildDepError "test-framework-quickcheck2"))
(hsPkgs."test-framework-hunit" or (errorHandler.buildDepError "test-framework-hunit"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."irc" or (errorHandler.buildDepError "irc"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 67180e3

Please sign in to comment.