3
0
Fork 0
forked from mirrors/nixpkgs

Remove file named '\'

This looks like it was accidental.

Fixes #20253.
This commit is contained in:
Eelco Dolstra 2016-11-09 12:52:56 +01:00
parent 03a417a0a4
commit 6042d6e39d

View file

@ -1,20 +0,0 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "mpir-${version}";
version = "1";
inherit buildInputs;
src = fetchurl {
url = "http://mpir.org/mpir-${version}.tar.bz2";
sha256 = "0000000000000000000000000000000000000000000000000000000000000000";
};
meta = {
inherit version;
description = ''A highly optimised library for bignum arithmetic forked from GMP'';
license = stdenv.lib.licenses. ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
downloadPage = "http://mpir.org/downloads.html";
homepage = "http://mpir.org/";
updateWalker = true;
};
}