d5f4a57cbf
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
25 lines
345 B
Nix
25 lines
345 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoconf
|
|
, libtool
|
|
, bison
|
|
, flex
|
|
, automake
|
|
}:
|
|
|
|
stdenv.mkDerivation (import ./common.nix { inherit fetchurl lib; pname = "linux-gpib-user"; } // {
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
libtool
|
|
bison
|
|
flex
|
|
automake
|
|
];
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=$(out)/etc"
|
|
"--prefix=$(out)"
|
|
];
|
|
})
|