mirror of
https://github.com/jb55/nostril.git
synced 2024-11-13 22:09:07 -05:00
251031f5a5
Signed-off-by: William Casarin <jb55@jb55.com>
14 lines
190 B
Nix
14 lines
190 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
with pkgs;
|
|
stdenv.mkDerivation {
|
|
pname = "nostril";
|
|
version = "0.1";
|
|
|
|
src = ./.;
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
buildInputs = [ secp256k1 ];
|
|
}
|