nixpkgs/pkgs/development/libraries/haskell/ghc-syb/default.nix

13 lines
241 B
Nix
Raw Normal View History

{cabal, syb, sourceByName}:
cabal.mkDerivation (self : {
pname = "hlint";
version = "1.4";
name = self.fname;
src = sourceByName "ghc_syb";
extraBuildInputs = [syb];
meta = {
description = "Source code suggestions";
};
})