shrub/nix/pkgs/ge-additions/default.nix
Elliot Glaysher 496e62e01d Merge branch 'cc-release' into rings
This translates the meson build to nix. Previously, we had our ge-additions
package just manually compiled in instead of having its own file.
2019-06-24 13:47:53 -07:00

10 lines
182 B
Nix

{ pkgs, ed25519 }:
pkgs.stdenv.mkDerivation rec {
name = "ge-additions";
builder = ./builder.sh;
src = ../../../pkg/ge-additions;
nativeBuildInputs = [ ed25519 ];
}