feat: enabling jar build with nix
This commit is contained in:
parent
51319b036b
commit
b1c128738f
|
@ -0,0 +1,16 @@
|
|||
.bsp/
|
||||
.scala-build/
|
||||
.metals/
|
||||
.direnv
|
||||
*/dist/
|
||||
/11-single-price-grid-component/.bloop/
|
||||
|
||||
**/.bloop
|
||||
**/project/project/
|
||||
**/project/metals.sbt
|
||||
**/project/.bloop
|
||||
**/project/target/
|
||||
**/target/
|
||||
|
||||
*/result
|
||||
result
|
|
@ -1,3 +1,4 @@
|
|||
name := "countries-page"
|
||||
|
||||
val toolkitV = "0.1.7"
|
||||
val toolkit = "org.scala-lang" %% "toolkit" % toolkitV
|
||||
|
|
|
@ -17,6 +17,6 @@ in {
|
|||
cp target/scala-*/${pname}-assembly-*.jar $out/bin/${pname}.jar
|
||||
'';
|
||||
|
||||
depsSha256 = "";
|
||||
depsSha256 = "sha256-vdCU7UJAGi/CujA05OVw/lIomMpIFl+kW+pn8ny16JI=";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")
|
||||
|
||||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.1")
|
||||
|
|
Loading…
Reference in New Issue