Skip to content

Commit

Permalink
Alejandra formatting applied
Browse files Browse the repository at this point in the history
  • Loading branch information
agaget committed Dec 20, 2023
1 parent d655df0 commit 1bae661
Showing 1 changed file with 37 additions and 37 deletions.
74 changes: 37 additions & 37 deletions pkgs/epnix/support/ads/default.nix
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
{
lib,
epnixLib,
epnix,
mkEpicsPackage,
fetchFromGitLab,
local_config_site ? {},
local_release ? {},
}:
mkEpicsPackage rec {
pname = "ads";
version = "2023.08.20";
varname = "ADS";

inherit local_config_site local_release;
{
lib,
epnixLib,
epnix,
mkEpicsPackage,
fetchFromGitLab,
local_config_site ? {},
local_release ? {},
}:
mkEpicsPackage rec {
pname = "ads";
version = "2023.08.20";
varname = "ADS";

doCheck = false;
propagatedBuildInputs = with epnix.support; [asyn calc];
inherit local_config_site local_release;

preBuild = ''
touch configure/RELEASE_PATHS.local
touch configure/RELEASE_LIBS.local
'';
src = fetchFromGitLab {
domain = "gitlab.esss.lu.se";
owner = "epics-modules";
repo = "epics-twincat-ads";
rev = "f07f73cd20320e40e908ed281527a81a4799bbce";
fetchSubmodules = true;
sha256 = "sha256-NCuT2EpEBEVMzQw4cU8l0AUYVXa9fUtEOGpynG5Z85M=";
};
doCheck = false;
propagatedBuildInputs = with epnix.support; [asyn calc];

patches = [./fixDep.patch];
preBuild = '' vscode-file://vscode-app/usr/share/code/resources/app/out/vs/code/electron-sandbox/workbench/workbench.html
touch configure/RELEASE_PATHS.local
touch configure/RELEASE_LIBS.local
'';
src = fetchFromGitLab {
domain = "gitlab.esss.lu.se";
owner = "epics-modules";
repo = "epics-twincat-ads";
rev = "f07f73cd20320e40e908ed281527a81a4799bbce";
fetchSubmodules = true;
sha256 = "sha256-NCuT2EpEBEVMzQw4cU8l0AUYVXa9fUtEOGpynG5Z85M=";
};

meta = {
description = "Module providing EPICS support for ADS Protocol (Automation Device Specification)";
homepage = "https://www.beckhoff.com/en-en/products/automation/twincat/tc1xxx-twincat-3-base/tc1000.html";
license = epnixLib.licenses.epics;
maintainers = with epnixLib.maintainers; [agaget];
};
}
patches = [./fixDep.patch];

meta = {
description = "Module providing EPICS support for ADS Protocol (Automation Device Specification)";
homepage = "https://www.beckhoff.com/en-en/products/automation/twincat/tc1xxx-twincat-3-base/tc1000.html";
license = epnixLib.licenses.epics;
maintainers = with epnixLib.maintainers; [agaget];
};
}

0 comments on commit 1bae661

Please sign in to comment.