mirror of
https://github.com/urbit/shrub.git
synced 2024-12-11 11:02:25 +03:00
496e62e01d
This translates the meson build to nix. Previously, we had our ge-additions package just manually compiled in instead of having its own file.
10 lines
182 B
Nix
10 lines
182 B
Nix
{ pkgs, ed25519 }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "ge-additions";
|
|
builder = ./builder.sh;
|
|
src = ../../../pkg/ge-additions;
|
|
|
|
nativeBuildInputs = [ ed25519 ];
|
|
}
|