mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ buildOctavePackage
|
|
, lib
|
|
, fetchFromGitHub
|
|
, gfortran
|
|
, lapack, blas
|
|
, autoreconfHook
|
|
}:
|
|
|
|
buildOctavePackage rec {
|
|
pname = "control";
|
|
version = "3.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gnu-octave";
|
|
repo = "pkg-control";
|
|
rev = "refs/tags/control-${version}";
|
|
sha256 = "sha256-7beEsdrne50NY4lGCotxGXwwWnMzUR2CKCc20OCjd0g=";
|
|
};
|
|
|
|
# Running autoreconfHook inside the src directory fixes a compile issue about
|
|
# the config.h header for control missing.
|
|
# This is supposed to be handled by control's top-level Makefile, but does not
|
|
# appear to be working. This manually forces it instead.
|
|
preAutoreconf = ''
|
|
pushd src
|
|
'';
|
|
|
|
postAutoreconf = ''
|
|
popd
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
gfortran
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
lapack blas
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gnu-octave.github.io/packages/control/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ KarlJoad ];
|
|
description = "Computer-Aided Control System Design (CACSD) Tools for GNU Octave, based on the proven SLICOT Library";
|
|
};
|
|
}
|