Add codebraid

This commit is contained in:
Alexander Bantyev 2022-07-18 14:19:35 +04:00
parent 854a18a415
commit 32ffbc5cdb
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5
7 changed files with 37 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -48,6 +48,22 @@
"type": "github" "type": "github"
} }
}, },
"codebraid": {
"flake": false,
"locked": {
"lastModified": 1657582153,
"narHash": "sha256-gFprQTx59q/K+K2u1eQvpG06eBNvMwapgHRgueWxtOM=",
"owner": "gpoore",
"repo": "codebraid",
"rev": "571de9554020044b07aedf9f0a8a6db7c8caf83e",
"type": "github"
},
"original": {
"owner": "gpoore",
"repo": "codebraid",
"type": "github"
}
},
"coeurl": { "coeurl": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -745,6 +761,7 @@
"NUR": "NUR", "NUR": "NUR",
"base16-black-metal-scheme": "base16-black-metal-scheme", "base16-black-metal-scheme": "base16-black-metal-scheme",
"brother-hl-3170cdw-driver": "brother-hl-3170cdw-driver", "brother-hl-3170cdw-driver": "brother-hl-3170cdw-driver",
"codebraid": "codebraid",
"coeurl": "coeurl", "coeurl": "coeurl",
"crdt": "crdt", "crdt": "crdt",
"deploy-rs": "deploy-rs", "deploy-rs": "deploy-rs",

View File

@ -84,6 +84,11 @@
}; };
direnv-vscode.url = "github:direnv/direnv-vscode"; direnv-vscode.url = "github:direnv/direnv-vscode";
codebraid = {
url = "github:gpoore/codebraid";
flake = false;
};
}; };
outputs = { nixpkgs, self, nix, deploy-rs, ... }@inputs: outputs = { nixpkgs, self, nix, deploy-rs, ... }@inputs:

View File

@ -121,4 +121,8 @@ in rec {
postInstall = postInstall =
"sed 's|Exec=.*|Exec=/run/current-system/sw/bin/systemctl --user start mako|' -i $out/share/dbus-1/services/fr.emersion.mako.service"; "sed 's|Exec=.*|Exec=/run/current-system/sw/bin/systemctl --user start mako|' -i $out/share/dbus-1/services/fr.emersion.mako.service";
}); });
codebraid = prev.codebraid.overrideAttrs (_: {
src = inputs.codebraid;
});
} }

View File

@ -39,5 +39,8 @@
ripgrep ripgrep
bat bat
jless jless
pandoc
codebraid
]; ];
} }

View File

@ -7,4 +7,12 @@
sha256 = "sha256-WopWzMCtiiLrx3pHNiDMZYFdjS359vu3T+6uI5A+Nv4="; sha256 = "sha256-WopWzMCtiiLrx3pHNiDMZYFdjS359vu3T+6uI5A+Nv4=";
}; };
}; };
gpoore.codebraid-preview = buildVscodeMarketplaceExtension {
mktplcRef = {
publisher = "gpoore";
name = "codebraid-preview";
version = "0.8.0";
sha256 = "sha256-bw/uzdbLDREwhd0PHOD+Ref3UdaYlkhegsUhkTX1WlI=";
};
};
} }