Bump version to 0.6
This commit is contained in:
parent
7c4fea02d1
commit
77887bb29e
@ -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 {
|
||||||
|
@ -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"
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user