mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
27 lines
333 B
Nix
27 lines
333 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
qtsvg,
|
|
pkg-config,
|
|
eigen,
|
|
shared-mime-info,
|
|
gsl,
|
|
libqalculate,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "step";
|
|
|
|
extraNativeBuildInputs = [
|
|
qttools
|
|
qtsvg
|
|
pkg-config
|
|
shared-mime-info
|
|
];
|
|
extraBuildInputs = [
|
|
eigen
|
|
gsl
|
|
libqalculate
|
|
];
|
|
meta.mainProgram = "step";
|
|
}
|