4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, python
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "conway_polynomials";
|
|
version = "0.5";
|
|
|
|
pythonEnv = python.withPackages (ps: with ps; [ six ]);
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sageupstream/conway_polynomials/conway_polynomials-${version}.tar.bz2";
|
|
sha256 = "05zb1ly9x2bbscqv0jgc45g48xx77mfs7qdbqhn4ihmihn57iwnq";
|
|
};
|
|
|
|
# Script that creates the "database" (nested python array) and pickles it
|
|
spkg-install = fetchurl {
|
|
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/conway_polynomials/spkg-install.py?id=07d6c37d18811e2b377a9689790a7c5e24da16ba";
|
|
sha256 = "0m12nfb37j3bn4bp06ddgnyp2d6z0hg5f83pbbjszxw7vxs33a82";
|
|
};
|
|
|
|
installPhase = ''
|
|
# directory layout as spkg-install.py expects
|
|
dir="$PWD"
|
|
cd ..
|
|
ln -s "$dir" "src"
|
|
|
|
# environment spkg-install.py expects
|
|
mkdir -p "$out/share"
|
|
export SAGE_SHARE="$out/share"
|
|
export PYTHONPATH=$PWD
|
|
|
|
${pythonEnv.interpreter} ${spkg-install}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Contains a small database of Conway polynomials";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = teams.sage.members;
|
|
};
|
|
}
|