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 \
|
hbs2-git-dashboard \
|
||||||
git-remote-hbs2 \
|
git-remote-hbs2 \
|
||||||
git-hbs2 \
|
git-hbs2 \
|
||||||
|
hbs2-cli \
|
||||||
fixme-new \
|
fixme-new \
|
||||||
hbs2-storage-simple-benchmarks \
|
hbs2-storage-simple-benchmarks \
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ packages: **/*.cabal
|
||||||
|
|
||||||
allow-newer: all
|
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
|
-- executable-static: True
|
||||||
|
|
|
@ -72,6 +72,7 @@ outputs = { self, nixpkgs, haskell-flake-utils, ... }@inputs:
|
||||||
"hbs2-share" = "./hbs2-share";
|
"hbs2-share" = "./hbs2-share";
|
||||||
"hbs2-git" = "./hbs2-git";
|
"hbs2-git" = "./hbs2-git";
|
||||||
"hbs2-fixer" = "./hbs2-fixer";
|
"hbs2-fixer" = "./hbs2-fixer";
|
||||||
|
"hbs2-cli" = "./hbs2-cli";
|
||||||
"fixme-new" = "./fixme-new";
|
"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
|
cabal-version: 3.0
|
||||||
name: hbs2-git
|
name: hbs2-cli
|
||||||
version: 0.24.1.2
|
version: 0.24.1.2
|
||||||
-- synopsis:
|
-- synopsis:
|
||||||
-- description:
|
-- description:
|
||||||
|
@ -99,10 +99,6 @@ library
|
||||||
HBS2.CLI
|
HBS2.CLI
|
||||||
|
|
||||||
build-depends: base
|
build-depends: base
|
||||||
, text
|
|
||||||
, suckless-conf
|
|
||||||
, unix
|
|
||||||
, unliftio
|
|
||||||
|
|
||||||
hs-source-dirs: lib
|
hs-source-dirs: lib
|
||||||
|
|
||||||
|
@ -113,11 +109,7 @@ executable hbs2-cli
|
||||||
-- other-modules:
|
-- other-modules:
|
||||||
-- other-extensions:
|
-- other-extensions:
|
||||||
build-depends:
|
build-depends:
|
||||||
base
|
base, hbs2-cli
|
||||||
, suckless-conf
|
|
||||||
, text
|
|
||||||
, hbs2-cli
|
|
||||||
, unliftio
|
|
||||||
|
|
||||||
hs-source-dirs: app
|
hs-source-dirs: app
|
||||||
default-language: GHC2021
|
default-language: GHC2021
|
||||||
|
|
Loading…
Reference in New Issue