Skip to content
Snippets Groups Projects
Commit 734d0845 authored by Daniel Firth's avatar Daniel Firth
Browse files

cursor-brick: init at 0.1.0.1

parent 6c970697
No related merge requests found
......@@ -148,6 +148,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "constraints" "0.13.4"
, callHackage "criterion" "1.5.13.0"
, callHackage "cursor" "0.3.2.0"
, callHackage "cursor-brick" "0.1.0.1"
, callCabal2nix
"cursor-dirforest"
"https://github.com/NorfairKing/cursor-dirforest"
......
......@@ -169,6 +169,8 @@ final: prev: with pkgs.haskell.lib; {
cursor = prev.callPackage (./pkgs/cursor.nix) { };
cursor-brick = prev.callPackage (./pkgs/cursor-brick.nix) { };
cursor-dirforest = prev.callPackage (./pkgs/cursor-dirforest.nix) { };
cursor-dirforest-brick = prev.callPackage (./pkgs/cursor-dirforest-brick.nix) { };
......
{ mkDerivation, base, brick, cursor, lib, text }:
mkDerivation {
pname = "cursor-brick";
version = "0.1.0.1";
sha256 = "7c07d3ad682ee8d704723376856ac4263b0d0ff5cd243b60fe7a78e4ccae1781";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base brick cursor text ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/NorfairKing/cursor-brick#readme";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment