26 lines
		
	
	
		
			789 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			789 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { cabal, aeson, cmdargs, filepath, haskellSrcExts, HUnit, mtl
 | |
| , strict, syb, testFramework, testFrameworkHunit, yaml
 | |
| }:
 | |
| 
 | |
| cabal.mkDerivation (self: {
 | |
|   pname = "stylish-haskell";
 | |
|   version = "0.5.6.1";
 | |
|   sha256 = "0fxncnl9bvb7qjha3r06qli9qlzfljism6k688hrr9y6l06jdc2c";
 | |
|   isLibrary = true;
 | |
|   isExecutable = true;
 | |
|   buildDepends = [
 | |
|     aeson cmdargs filepath haskellSrcExts mtl strict syb yaml
 | |
|   ];
 | |
|   testDepends = [
 | |
|     aeson cmdargs filepath haskellSrcExts HUnit mtl syb testFramework
 | |
|     testFrameworkHunit yaml
 | |
|   ];
 | |
|   meta = {
 | |
|     homepage = "https://github.com/jaspervdj/stylish-haskell";
 | |
|     description = "Haskell code prettifier";
 | |
|     license = self.stdenv.lib.licenses.bsd3;
 | |
|     platforms = self.ghc.meta.platforms;
 | |
|     maintainers = [ self.stdenv.lib.maintainers.simons ];
 | |
|   };
 | |
| })
 | 
