21 lines
		
	
	
		
			713 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			713 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ cabal, aeson, blazeBuilder, conduit, monadControl, persistent
 | 
						|
, postgresqlLibpq, postgresqlSimple, text, time, transformers
 | 
						|
}:
 | 
						|
 | 
						|
cabal.mkDerivation (self: {
 | 
						|
  pname = "persistent-postgresql";
 | 
						|
  version = "1.3.0";
 | 
						|
  sha256 = "1mayfq1z9i46nqgiajkhxx4z3hfy3gl5nzx8d5xlp7s1mliz3qjv";
 | 
						|
  buildDepends = [
 | 
						|
    aeson blazeBuilder conduit monadControl persistent postgresqlLibpq
 | 
						|
    postgresqlSimple text time transformers
 | 
						|
  ];
 | 
						|
  meta = {
 | 
						|
    homepage = "http://www.yesodweb.com/book/persistent";
 | 
						|
    description = "Backend for the persistent library using postgresql";
 | 
						|
    license = self.stdenv.lib.licenses.mit;
 | 
						|
    platforms = self.ghc.meta.platforms;
 | 
						|
    maintainers = [ self.stdenv.lib.maintainers.andres ];
 | 
						|
  };
 | 
						|
})
 |