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
25 lines
638 B
Nix
25 lines
638 B
Nix
{ lib, stdenv, fetchFromGitHub, buildDunePackage, base, stdio, dune-configurator, secp256k1 }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "secp256k1";
|
|
version = "0.4.1";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dakk";
|
|
repo = "secp256k1-ml";
|
|
rev = version;
|
|
sha256 = "0jkd7mc5kynhg0b76dfk70pww97qsq2jbd991634i16xf8qja9fj";
|
|
};
|
|
|
|
buildInputs = [ base stdio dune-configurator secp256k1 ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/dakk/secp256k1-ml";
|
|
description = "Elliptic curve library secp256k1 wrapper for Ocaml";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.vyorkin ];
|
|
};
|
|
}
|