mirror of
https://github.com/srid/rib.git
synced 2024-12-03 07:25:50 +03:00
d361be29c1
Best way to get reflex and friends. Also remove package.yaml
18 lines
393 B
Nix
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"];
|
|
};
|
|
})
|