nixpkgs/pkgs/applications/science/electronics/linux-gpib/user.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
345 B
Nix
Raw Normal View History

2023-07-27 07:40:04 +00:00
{ 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)"
];
})