summary refs log tree commit diff
path: root/pkgs/servers/hasura/network-uri.nix
blob: 45016d470a8d1911944b0ecc78b0ec93698edbc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ mkDerivation, base, deepseq, HUnit, parsec, stdenv
, test-framework, test-framework-hunit, test-framework-quickcheck2
}:
mkDerivation {
  pname = "network-uri";
  version = "2.6.1.0";
  sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0";
  revision = "1";
  editedCabalFile = "141nj7q0p9wkn5gr41ayc63cgaanr9m59yym47wpxqr3c334bk32";
  libraryHaskellDepends = [ base deepseq parsec ];
  testHaskellDepends = [
    base HUnit test-framework test-framework-hunit
    test-framework-quickcheck2
  ];
  homepage = "https://github.com/haskell/network-uri";
  description = "URI manipulation";
  license = stdenv.lib.licenses.bsd3;
}