Bump version to 0.6

This commit is contained in:
Paul Brinkmeier 2023-04-06 14:15:05 +02:00
parent 7c4fea02d1
commit 77887bb29e
3 changed files with 7 additions and 6 deletions

View File

@ -33,10 +33,11 @@
''; '';
}; };
utoy = haskellPackages.callPackage utoy = pkgs.haskell.lib.justStaticExecutables (haskellPackages.callPackage
({ mkDerivation }: ({ mkDerivation }:
mkDerivation { mkDerivation {
version = "0.5"; # Keep this in sync with package.yaml
version = "0.6";
pname = "utoy"; pname = "utoy";
license = pkgs.lib.licenses.mit; license = pkgs.lib.licenses.mit;
src = src =
@ -57,7 +58,7 @@
filter = path: _type: pkgs.lib.any (prefix: pkgs.lib.hasPrefix (toString prefix) path) whitelist; filter = path: _type: pkgs.lib.any (prefix: pkgs.lib.hasPrefix (toString prefix) path) whitelist;
}; };
libraryHaskellDepends = haskellDeps haskellPackages; libraryHaskellDepends = haskellDeps haskellPackages;
}) {}; }) {});
in { in {
packages.x86_64-linux = { packages.x86_64-linux = {
inherit ghc; inherit ghc;
@ -70,7 +71,7 @@
config.Cmd = [ "${utoy}/bin/utoy" ]; config.Cmd = [ "${utoy}/bin/utoy" ];
}; };
default = pkgs.haskell.lib.justStaticExecutables utoy; default = utoy;
}; };
devShells.x86_64-linux.default = pkgs.mkShell { devShells.x86_64-linux.default = pkgs.mkShell {

View File

@ -2,7 +2,7 @@
name: utoy name: utoy
# Keep this in sync with the version in flake.nix. # Keep this in sync with the version in flake.nix.
version: 0.5 version: 0.6
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.5 version: 0.6
author: Paul Brinkmeier author: Paul Brinkmeier
maintainer: hallo@pbrinkmeier.de maintainer: hallo@pbrinkmeier.de
copyright: 2023 Paul Brinkmeier copyright: 2023 Paul Brinkmeier