summary refs log tree commit diff
path: root/pkgs/development/libraries/libgpg-error/default.nix
blob: ea37b987f0387f2e2fc899ec38936bcc5146279e (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "libgpg-error-1.0";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/libgpg-error-1.0.tar.gz;
    md5 = "ff409db977e4a4897aa09ea420a28a2f";
  };
}