about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hflags/default.nix
blob: 04e70183781dd2abef54097d854cce2fe900768e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, text }:

cabal.mkDerivation (self: {
  pname = "hflags";
  version = "0.4";
  sha256 = "17zzx273kmnwwazmmns78cllz3l7wad1gi7hizgcxi68j04blhd4";
  buildDepends = [ text ];
  meta = {
    homepage = "http://github.com/errge/hflags";
    description = "Command line flag parser, very similar to Google's gflags";
    license = "Apache-2.0";
    platforms = self.ghc.meta.platforms;
  };
})