mirror of
https://git.sr.ht/~azikx/wyswort
synced 2024-10-30 07:26:20 +00:00
update
This commit is contained in:
parent
2a9b9b5fb7
commit
4c6699d498
File diff suppressed because it is too large
Load diff
|
@ -1,24 +0,0 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "femto";
|
||||
version = "12.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "frapa";
|
||||
repo = pname;
|
||||
rev = "922c54ecd4a4a6995fcc71ac9afbdbf70906f201";
|
||||
hash = "sha256-oeXRqE1ZjLYZUVFp4nx4wP1+om1raSP8FxW7R+ODi80=";
|
||||
};
|
||||
|
||||
cargoHash = lib.fakeHash;
|
||||
cargoSha256 = lib.fakeSha256;
|
||||
sourceRoot = "source/workspace-a";
|
||||
|
||||
meta = {
|
||||
description = "Tiny text editor";
|
||||
homepage = "https://github.com/frapa/femto";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ "azikx" ];
|
||||
};
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
{ lib, stdenv, fetchurl, autoPatchelfHook }:
|
||||
let
|
||||
version = "0.20.0";
|
||||
hash = "sha256-WDygG9aGnD20nGxtG0t+T2KEwbJ+fZ0uRaCndirrsXI=";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "termdash";
|
||||
# dontUnpack = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mum4k/termdash/archive/refs/tags/v${version}.tar.gz";
|
||||
sha256 = "${hash}";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoPatchelfHook ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp $src $out/bin/termdash
|
||||
chmod +x $out/bin/termdash
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "termdash";
|
||||
homepage = "https://github.com/mum4k/termdash";
|
||||
license = licenses.unlicense;
|
||||
meta.platforms = platforms.all;
|
||||
mainProgram = "termdash";
|
||||
};
|
||||
}
|
|
@ -5,6 +5,7 @@
|
|||
./ayugram
|
||||
./firefox
|
||||
./qbittorrent
|
||||
./qutebrowser
|
||||
./mpv
|
||||
./swayimg
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
];
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
package = pkgs.firefox;
|
||||
languagePacks = [ "ru" ];
|
||||
profiles.dragora = {
|
||||
id = 0;
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
home.packages = with pkgs; [
|
||||
home-manager
|
||||
|
||||
# arc-browser
|
||||
vieb
|
||||
# vimb
|
||||
# chawan
|
||||
qutebrowser
|
||||
vesktop
|
||||
tor-browser
|
||||
qbittorrent-enhanced
|
||||
|
@ -27,6 +32,8 @@
|
|||
|
||||
swayimg
|
||||
anime4k
|
||||
mpc-qt
|
||||
cheese
|
||||
|
||||
bottles
|
||||
# "wineWow64Packages.staging"
|
||||
|
|
6
home/programs/gui/qutebrowser/default.nix
Normal file
6
home/programs/gui/qutebrowser/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.qutebrowser = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue