mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
26 lines
345 B
Nix
26 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)"
|
|
];
|
|
})
|