mirror of
https://github.com/srid/rib.git
synced 2024-11-30 03:45:00 +03:00
e2779b934d
Needed for github style style lists
24 lines
517 B
Nix
24 lines
517 B
Nix
{ reflex-platform ? import ((import <nixpkgs> {}).fetchFromGitHub {
|
|
owner = "reflex-frp";
|
|
repo = "reflex-platform";
|
|
rev = "716879f16d53c93766e7ed9af17416fccb2edfe1";
|
|
sha256 = "1mngxa24cfpvxxq4hgh77nw36vny4abl5wi2xmlwpkk25wzm0h0x";
|
|
}) {}
|
|
}:
|
|
|
|
reflex-platform.project ({ pkgs, hackGet, ... }:
|
|
let
|
|
pandoc = import ./nix/pandoc.nix { pkgs = pkgs; hackGet = hackGet; };
|
|
in
|
|
{
|
|
packages = pandoc.packages // {
|
|
rib = ./.;
|
|
};
|
|
|
|
overrides = pandoc.overrides;
|
|
|
|
shells = {
|
|
ghc = ["rib"];
|
|
};
|
|
})
|