1
1
mirror of https://github.com/srid/rib.git synced 2024-12-03 07:25:50 +03:00
rib/default.nix
Sridhar Ratnakumar d361be29c1
Use reflex-platform (#6)
Best way to get reflex and friends.

Also remove package.yaml
2019-06-28 10:06:58 -04:00

18 lines
393 B
Nix

{ reflex-platform ? import ((import <nixpkgs> {}).fetchFromGitHub {
owner = "reflex-frp";
repo = "reflex-platform";
rev = "716879f16d53c93766e7ed9af17416fccb2edfe1";
sha256 = "1mngxa24cfpvxxq4hgh77nw36vny4abl5wi2xmlwpkk25wzm0h0x";
}) {}
}:
reflex-platform.project ({ pkgs, ... }: {
packages = {
notessridca = ./.;
};
shells = {
ghc = ["notessridca"];
};
})