From 6c99e1e47814d346f37efc03748a1b51ea139d75 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Fri, 29 Jul 2022 01:50:17 -0400 Subject: [PATCH] rekahsoft-gnu: Add ghc-js-dgtable * rekahsoft-gnu/packages/haskell-apps.scm (ghc-js-dgtable): New variable --- rekahsoft-gnu/packages/haskell-apps.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/rekahsoft-gnu/packages/haskell-apps.scm b/rekahsoft-gnu/packages/haskell-apps.scm index 972b3d4..a76c478 100644 --- a/rekahsoft-gnu/packages/haskell-apps.scm +++ b/rekahsoft-gnu/packages/haskell-apps.scm @@ -143,3 +143,24 @@ accounting system. It can be a more convenient way to browse your accounts than the CLI. This package currently does not support Microsoft Windows, except in WSL.") (license license:gpl3))) + +(define-public ghc-js-dgtable + (package + (name "ghc-js-dgtable") + (version "0.5.2") + (source + (origin + (method url-fetch) + (uri (hackage-uri "js-dgtable" version)) + (sha256 + (base32 "1b10kx703kbkb5q1ggdpqcrxqjb33kh24khk21rb30w0xrdxd3g2")))) + (build-system haskell-build-system) + (home-page "https://github.com/ndmitchell/js-dgtable#readme") + (synopsis "Obtain minified jquery.dgtable code") + (description + "This package bundles the minified code into a Haskell package, so it can be depended upon by Cabal +packages. The first three components of the version number match the upstream +jquery.dgtable version. The package is designed to meet the redistribution +requirements of downstream users (e.g. Debian).") + (license license:expat)))