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

cabal.mkDerivation (self: {
  pname = "network-info";
  version = "0.2.0.2";
  sha256 = "132cna6dc8azpll3rm2y4wv6sdcavwjq3x9f8m4p2952vr53bw3m";
  meta = {
    homepage = "http://github.com/jystic/network-info";
    description = "Access the local computer's basic network configuration";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})