mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 16:46:34 +01:00
Maybe this works
This commit is contained in:
parent
2f5dd0f621
commit
775f1f099a
1 changed files with 2 additions and 3 deletions
|
@ -1,13 +1,12 @@
|
||||||
{ lib, fetchFromGitHub, buildNpmPackage, ... }:
|
{ lib, fetchFromGitHub, buildNpmPackage, ... }:
|
||||||
|
|
||||||
buildNpmPackage
|
buildNpmPackage {
|
||||||
{
|
|
||||||
name = "knossos";
|
name = "knossos";
|
||||||
verison = "2.2";
|
verison = "2.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "modrinth";
|
owner = "modrinth";
|
||||||
repo = name;
|
repo = "${name}";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-nJDte8rpYq3Ge844qtAOvLp6NcFsl51jFgaZGR97/YI";
|
sha256 = "sha256-nJDte8rpYq3Ge844qtAOvLp6NcFsl51jFgaZGR97/YI";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue