15 lines
395 B
Nix
15 lines
395 B
Nix
{ 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;
|
|
};
|
|
})
|