summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hostname/default.nix
blob: 75886f8daadf5f84a3268d6a933a563d1dcb2f38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal }:

cabal.mkDerivation (self: {
  pname = "hostname";
  version = "1.0";
  sha256 = "0p6gm4328946qxc295zb6vhwhf07l1fma82vd0siylnsnsqxlhwv";
  meta = {
    description = "A very simple package providing a cross-platform means of determining the hostname";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})