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
18 lines
571 B
Nix
18 lines
571 B
Nix
{ cabal, baseUnicodeSymbols, monadControl, transformersBase }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "lifted-base";
|
|
version = "0.1.1.1";
|
|
sha256 = "1cfk3n12qhyrrfvw410gfydbgmb7r9y65fsjp2r3c4ilcyd5li70";
|
|
buildDepends = [
|
|
baseUnicodeSymbols monadControl transformersBase
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/basvandijk/lifted-base";
|
|
description = "lifted IO operations from the base library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|