1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 02:46:28 +00:00
nixpkgs/pkgs/development/libraries/libgpg-error/default.nix

10 lines
213 B
Nix
Raw Normal View History

{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";
};
}