tangled
alpha
login
or
join now
isuggest.selfce.st
/
strand
3
fork
atom
alternative tangled frontend (extremely wip)
3
fork
atom
overview
issues
pulls
pipelines
refactor: provide names in nix shell stuff
serenity
2 months ago
ab514537
bacc2013
+4
-4
2 changed files
expand all
collapse all
unified
split
default.nix
flake.nix
+3
-3
default.nix
···
2
2
{ lib, buildNpmPackage }:
3
3
4
4
buildNpmPackage {
5
5
-
pname = "RENAME ME";
5
5
+
pname = "strand";
6
6
version = "0.0.1";
7
7
8
8
src = ./.;
···
10
10
npmDepsHash = lib.fakeHash;
11
11
12
12
meta = {
13
13
-
description = "PROVIDE ME";
14
14
-
homepage = "PROVIDE ME";
13
13
+
description = "Alternative frontend client for Tangled";
14
14
+
homepage = "https://tangled.org/isuggest.selfce.st/strand";
15
15
license = lib.licenses.mit;
16
16
maintainers = with lib.maintainers; [ ];
17
17
mainProgram = "example";
+1
-1
flake.nix
···
1
1
# stolen from https://github.com/tgirlcloud/nix-templates/blob/main/node/flake.nix
2
2
{
3
3
-
description = "PROVIDE ME";
3
3
+
description = "Alternative frontend client for Tangled";
4
4
5
5
inputs = {
6
6
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";