Compare commits

..

No commits in common. "fde68ee8339b57737c8db6aa4a53dc9558748dc2" and "3fd4177cd44e6ad4699bbed4427998345f3db923" have entirely different histories.

5 changed files with 4 additions and 24 deletions

View File

@ -1,21 +1 @@
# utoy # utoy
## Building the executable
```
$ $(nix-build utoy.nix)/bin/utoy
```
## Building the Docker image
```
$ docker load < $(nix-build nix/docker-image.nix)
```
## Development Shell
Includes Stack, `haskell-language-server`, `gen-hie` etc.
```
$ nix-shell
```

View File

@ -4,6 +4,6 @@ let
in in
pkgs.dockerTools.buildImage { pkgs.dockerTools.buildImage {
name = "git.pbrinkmeier.de/paul/utoy"; name = "git.pbrinkmeier.de/paul/utoy";
tag = utoy.version; tag = "0.2";
config.Cmd = [ "${utoy}/bin/utoy" ]; config.Cmd = [ "${utoy}/bin/utoy" ];
} }

View File

@ -1,7 +1,7 @@
# Adapted from new-template.hsfiles # Adapted from new-template.hsfiles
name: utoy name: utoy
version: 0.3 version: 0.2
git: "https://git.pbrinkmeier.de/paul/utoy" git: "https://git.pbrinkmeier.de/paul/utoy"
license: MIT license: MIT
author: "Paul Brinkmeier" author: "Paul Brinkmeier"

View File

@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
name: utoy name: utoy
version: 0.3 version: 0.2
author: Paul Brinkmeier author: Paul Brinkmeier
maintainer: hallo@pbrinkmeier.de maintainer: hallo@pbrinkmeier.de
copyright: 2023 Paul Brinkmeier copyright: 2023 Paul Brinkmeier

View File

@ -8,7 +8,7 @@ let
utoy = utoy =
{ mkDerivation }: { mkDerivation }:
mkDerivation { mkDerivation {
version = "0.3"; version = "0.2";
pname = "utoy"; pname = "utoy";
license = pkgs.lib.licenses.mit; license = pkgs.lib.licenses.mit;
src = src =