mirror of https://github.com/voidlizard/hbs2
wip
This commit is contained in:
parent
2b5e05651f
commit
dac2e5181a
1
Makefile
1
Makefile
|
@ -16,6 +16,7 @@ BINS := \
|
|||
hbs2-git-dashboard \
|
||||
git-remote-hbs2 \
|
||||
git-hbs2 \
|
||||
hbs2-cli \
|
||||
fixme-new \
|
||||
hbs2-storage-simple-benchmarks \
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ packages: **/*.cabal
|
|||
|
||||
allow-newer: all
|
||||
|
||||
constraints: pandoc ==3.1.11, suckless-conf >= 0.1.2.6
|
||||
constraints: pandoc >=3.1.11, suckless-conf >= 0.1.2.6
|
||||
|
||||
|
||||
-- executable-static: True
|
||||
|
|
|
@ -72,6 +72,7 @@ outputs = { self, nixpkgs, haskell-flake-utils, ... }@inputs:
|
|||
"hbs2-share" = "./hbs2-share";
|
||||
"hbs2-git" = "./hbs2-git";
|
||||
"hbs2-fixer" = "./hbs2-fixer";
|
||||
"hbs2-cli" = "./hbs2-cli";
|
||||
"fixme-new" = "./fixme-new";
|
||||
};
|
||||
|
||||
|
|
|
@ -1 +1,7 @@
|
|||
module Main where
|
||||
module Main where
|
||||
|
||||
|
||||
main :: IO ()
|
||||
main = do
|
||||
print "yay!"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
cabal-version: 3.0
|
||||
name: hbs2-git
|
||||
name: hbs2-cli
|
||||
version: 0.24.1.2
|
||||
-- synopsis:
|
||||
-- description:
|
||||
|
@ -99,10 +99,6 @@ library
|
|||
HBS2.CLI
|
||||
|
||||
build-depends: base
|
||||
, text
|
||||
, suckless-conf
|
||||
, unix
|
||||
, unliftio
|
||||
|
||||
hs-source-dirs: lib
|
||||
|
||||
|
@ -113,11 +109,7 @@ executable hbs2-cli
|
|||
-- other-modules:
|
||||
-- other-extensions:
|
||||
build-depends:
|
||||
base
|
||||
, suckless-conf
|
||||
, text
|
||||
, hbs2-cli
|
||||
, unliftio
|
||||
base, hbs2-cli
|
||||
|
||||
hs-source-dirs: app
|
||||
default-language: GHC2021
|
||||
|
|
Loading…
Reference in New Issue