xeals
7959b877d9
This commit moves a lot of the heavy lifting out of callPackage and back into regular import, following conventions from upstream Nixpkgs. It allows for a clearer and less magic definition of new packages, particularly by downstream, as well, by exposing the *Build package callers in the attribute set.
13 lines
291 B
Nix
13 lines
291 B
Nix
{ callPackage }:
|
|
{
|
|
spring-assistant = callPackage
|
|
({ ideaBuild }: ideaBuild {
|
|
pname = "intellij-spring-assistant";
|
|
version = "0.12.0";
|
|
pluginId = 10229;
|
|
versionId = 44968;
|
|
sha256 = "13cglywzhb4j0qj0bs2jwaz2k8pxrxalv35wgkmgkxr635bxmwsj";
|
|
})
|
|
{ };
|
|
}
|