Merge pull request #43441 from dtzWill/update/libpoly-but-really-just-cleanup-a-bit
libpoly: 0.1.5 -> 0.1.7 (noop), cleanup a bit to modern style
This commit is contained in:
commit
c78b0efdc0
@ -1,17 +1,20 @@
|
||||
{stdenv, fetchurl, gmp, cmake, python}:
|
||||
{stdenv, fetchFromGitHub, gmp, cmake, python}:
|
||||
|
||||
let version = "0.1.5";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "libpoly";
|
||||
version = "0.1.7";
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libpoly-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/SRI-CSL/libpoly/archive/v${version}.tar.gz";
|
||||
sha256 = "0yj3gd60lx8dcgw7hgld8wqvjkpixx3ww3v33sdf7p6lln7ksxyn";
|
||||
src = fetchFromGitHub {
|
||||
owner = "SRI-CSL";
|
||||
repo = "libpoly";
|
||||
rev = "v${version}";
|
||||
sha256 = "0i5ar4lhs88glk0rvkmag656ii434i6i1q5dspx6d0kyg78fii64";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake gmp python ];
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ gmp python ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/SRI-CSL/libpoly;
|
||||
|
Loading…
Reference in New Issue
Block a user