d98161617f
- hinotify: added meta.maintainers section - hledger-lib: update to version 0.18.1 - hledger: update to version 0.18.1 - hledger-web: update to version 0.18.1 - lifted-base: update to version 0.1.1.1 - monad-control: update to version 0.3.1.4 - multiarg: update to version 0.4.0.0 - pandoc: update to version 1.9.4.2 - shelly: update to version 0.12.2
16 lines
515 B
Nix
16 lines
515 B
Nix
{ cabal, explicitException, utf8String }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "multiarg";
|
|
version = "0.4.0.0";
|
|
sha256 = "04m4ynf6x8rlnlmnl6a7jj42fszjc1bly4h3jyjxxsqjdynrv81q";
|
|
buildDepends = [ explicitException utf8String ];
|
|
meta = {
|
|
homepage = "https://github.com/massysett/multiarg";
|
|
description = "Combinators to build command line parsers";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|