urbit/nix/pkgs/ent/default.nix

15 lines
259 B
Nix
Raw Normal View History

{ lib, stdenv, enableParallelBuilding ? true }:
2019-03-05 03:43:53 +03:00
stdenv.mkDerivation {
name = "ent";
src = lib.cleanSource ../../../pkg/ent;
postPatch = ''
patchShebangs ./configure
'';
installFlags = [ "PREFIX=$(out)" ];
inherit enableParallelBuilding;
2019-03-05 03:43:53 +03:00
}