mirror of
https://github.com/awakesecurity/hocker.git
synced 2024-11-22 11:03:14 +03:00
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:
parent
987b7f1fa2
commit
6103868b05
@ -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
|
||||
|
||||
|
@ -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
11
nix/Only.nix
Normal 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;
|
||||
}
|
@ -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 { } )
|
||||
|
Loading…
Reference in New Issue
Block a user