Skip to content

Commit

Permalink
Bump to 2.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmjio committed Aug 3, 2019
1 parent 802c29e commit 8d83298
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 41 deletions.
16 changes: 1 addition & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,8 @@
language: nix

matrix:
fast_finish: true
include:
- env: GHCVER=ghcHEAD
- env: GHCVER=ghc861
- env: GHCVER=ghc844
- env: GHCVER=ghc822
- env: GHCVER=ghc802

allow_failures:
- env: GHCVER=ghcHEAD
- env: GHCVER=ghc822
- env: GHCVER=ghc802

before_install:
- nix-channel --list
- nix-channel --update

script:
- nix-build --argstr compiler $GHCVER
- nix-build
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015, David Johnson
Copyright (c) 2015-2020, David Johnson

All rights reserved.

Expand Down
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ compiler ? "ghc844" }:
{ compiler ? "ghc865" }:
let
config = {
packageOverrides = pkgs: with pkgs.haskell.lib; {
haskell = pkgs.haskell // {
packages = pkgs.haskell.packages // {
${compiler} = pkgs.haskell.packages.${compiler}.override {
overrides = self: super: {
envy = buildStrictly (self.callPackage ./envy.nix {});
envy = buildStrictly (self.callCabal2nix "envy" ./. {});
};
};
};
Expand Down
6 changes: 3 additions & 3 deletions envy.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: envy
version: 1.5.1.0
version: 2.0.0.0
synopsis: An environmentally friendly way to deal with environment variables
license: BSD3
license-file: LICENSE
author: David Johnson, Tim Adams, Eric Mertens
author: David Johnson, Tim Adams, Eric Mertens, Nicolas Rolland
maintainer: djohnson.m@gmail.com
copyright: David Johnson (c) 2015
copyright: David Johnson (c) 2015-2020
category: System
build-type: Simple
cabal-version: >=1.10
Expand Down
18 changes: 0 additions & 18 deletions envy.nix

This file was deleted.

4 changes: 2 additions & 2 deletions upload.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {}, compiler ? "ghc844" }:
{ pkgs ? import <nixpkgs> {}, compiler ? "ghc865" }:
with pkgs.haskell.lib;
sdistTarball (buildStrictly (pkgs.haskell.packages.${compiler}.callPackage ./envy.nix {}))
sdistTarball (buildStrictly (pkgs.haskell.packages.${compiler}.callCabal2nix "envy" ./. {}))

0 comments on commit 8d83298

Please sign in to comment.