nixpkgs/pkgs/development/libraries/gf2x/default.nix

20 lines
619 B
Nix
Raw Normal View History

2016-10-10 14:21:23 +00:00
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "gf2x-${version}";
2018-07-08 20:52:33 +00:00
version = "1.2";
2016-10-10 14:21:23 +00:00
src = fetchurl {
2018-07-08 20:52:33 +00:00
# find link to latest version (with file id) here: https://gforge.inria.fr/projects/gf2x/
url = "https://gforge.inria.fr/frs/download.php/file/36934/gf2x-1.2.tar.gz";
sha256 = "0d6vh1mxskvv3bxl6byp7gxxw3zzpkldrxnyajhnl05m0gx7yhk1";
2016-10-10 14:21:23 +00:00
};
2018-07-08 20:52:33 +00:00
meta = with stdenv.lib; {
2016-10-10 14:21:23 +00:00
description = ''Routines for fast arithmetic in GF(2)[x]'';
2018-07-08 20:52:33 +00:00
homepage = http://gf2x.gforge.inria.fr;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ raskin ];
2018-08-13 21:36:18 +00:00
platforms = platforms.unix;
2016-10-10 14:21:23 +00:00
};
}