blob: 60c7f9ced463f8518c633c394d4488fdd6d10c09 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ cabal, Cabal }:
cabal.mkDerivation (self: {
pname = "ghc-paths";
version = "0.1.0.8";
sha256 = "0mhc5zhbybp1vmkjsqbca51993vkpx5g8hql160m8m95apkc2wl6";
buildDepends = [ Cabal ];
meta = {
description = "Knowledge of GHC's installation directories";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})
|