Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 autoconf, 6 libtool, 7 bison, 8 flex, 9 automake, 10 udevCheckHook, 11}: 12 13stdenv.mkDerivation ( 14 import ./common.nix { 15 inherit fetchurl lib; 16 pname = "linux-gpib-user"; 17 } 18 // { 19 20 nativeBuildInputs = [ 21 autoconf 22 libtool 23 bison 24 flex 25 automake 26 udevCheckHook 27 ]; 28 29 configureFlags = [ 30 "--sysconfdir=$(out)/etc" 31 "--prefix=$(out)" 32 ]; 33 34 doInstallCheck = true; 35 } 36)