1.0.2 -> 1.0.3 (#29)

* 1.0.2 -> 1.0.3

* Add the Only package to fix Hydra evaluation error
This commit is contained in:
Parnell Springmeyer 2018-01-03 17:51:15 -06:00 committed by GitHub
parent 987b7f1fa2
commit 6103868b05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 1 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## 1.0.3
### Added
- `readField` implementations for the custom `ParseField` instances to
accommodate a minor API change in `optparse-generic` version `1.2.3`
## 1.0.2
### Fixed

View File

@ -1,5 +1,5 @@
name: hocker
version: 1.0.2
version: 1.0.3
synopsis: Interact with the docker registry and generate nix build instructions
homepage: https://github.com/awakesecurity/hocker#readme
Bug-Reports: https://github.com/awakesecurity/hocker/issues

11
nix/Only.nix Normal file
View File

@ -0,0 +1,11 @@
{ mkDerivation, base, deepseq, stdenv }:
mkDerivation {
pname = "Only";
version = "0.1";
sha256 = "0rdj3a629fk2vp121jq8mf2smkblrz5w3cxhlsyx6my2x29s2ymb";
revision = "1";
editedCabalFile = "f92f5da97e647451f1ee7f5bf44914fb75062d08ccd3f36b2000d649c63d13aa";
libraryHaskellDepends = [ base deepseq ];
description = "The 1-tuple type or single-value \"collection\"";
license = stdenv.lib.licenses.bsd3;
}

View File

@ -22,6 +22,9 @@ let
http-client-tls =
haskellPackagesNew.callPackage ./nix/http-client-tls.nix { };
Only =
haskellPackagesNew.callPackage ./nix/Only.nix { };
hocker =
pkgs.haskell.lib.overrideCabal
( haskellPackagesNew.callPackage ./default.nix { } )