···11{ lib, stdenv, buildGoModule, fetchFromGitHub, buildPackages, installShellFiles, fetchpatch
22, makeWrapper
33, enableCmount ? true, fuse, macfuse-stubs
44+, librclone
45}:
5667buildGoModule rec {
···5758 --suffix PATH : "${lib.makeBinPath [ fuse ] }" \
5859 --prefix LD_LIBRARY_PATH : "${fuse}/lib"
5960 '';
6161+6262+ passthru.tests = {
6363+ inherit librclone;
6464+ };
60656166 meta = with lib; {
6267 description = "Command line program to sync files and directories to and from major cloud storage";
+32
pkgs/applications/radio/fm-tune/default.nix
···11+{ lib, stdenv, fetchFromGitHub, pkg-config, liquid-dsp, soapysdr }:
22+33+stdenv.mkDerivation rec {
44+ pname = "fm-tune";
55+ version = "1.1";
66+77+ src = fetchFromGitHub {
88+ owner = "viraptor";
99+ repo = "fm_tune";
1010+ rev = version;
1111+ sha256 = "pwL2G1Ni1Ixw/N0diSoGGIoVrtmF92mWZ5i57OOvkX4=";
1212+ };
1313+1414+ nativeBuildInputs = [ pkg-config ];
1515+1616+ buildInputs = [ liquid-dsp soapysdr ];
1717+1818+ meta = with lib; {
1919+ description = "Find initial calibration offset for SDR devices";
2020+ longDescription = ''
2121+ fm_tune finds the initial offset for calibrating an SDR device. This is
2222+ based a given FM radio station frequency. The offset given by this tool is
2323+ not precise, but can be useful as a starting point for other tools which
2424+ cannot correct for very large errors.
2525+ '';
2626+ homepage = "https://github.com/viraptor/fm_tune";
2727+ license = licenses.asl20;
2828+ platforms = platforms.unix;
2929+ maintainers = with maintainers; [ viraptor ];
3030+ mainProgram = "fm_tune";
3131+ };
3232+}
···11{ lib, stdenv, fetchFromGitHub, substituteAll, pkgs, bash }:
2233-# To make use of this derivation, use
44-# `programs.zsh.promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";`
5364let
75 # match gitstatus version with given `gitstatus_version`:
···4947 meta = {
5048 changelog = "https://github.com/romkatv/powerlevel10k/releases/tag/v${version}";
5149 description = "A fast reimplementation of Powerlevel9k ZSH theme";
5050+ longDescription = ''
5151+ To make use of this derivation, use
5252+ `programs.zsh.promptInit = "source ''${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";`
5353+ '';
5254 homepage = "https://github.com/romkatv/powerlevel10k";
5355 license = lib.licenses.mit;
5456 platforms = lib.platforms.unix;
+4-3
pkgs/shells/zsh/zsh-powerlevel9k/default.nix
···11{ lib, stdenv, fetchFromGitHub }:
2233-# To make use of this derivation, use
44-# `programs.zsh.promptInit = "source ${pkgs.zsh-powerlevel9k}/share/zsh-powerlevel9k/powerlevel9k.zsh-theme";`
55-63stdenv.mkDerivation {
74 pname = "powerlevel9k";
85 version = "2017-11-10";
···21182219 meta = {
2320 description = "A beautiful theme for zsh";
2121+ longDescription = ''
2222+ To make use of this derivation, use
2323+ `programs.zsh.promptInit = "source ''${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";`
2424+ '';
2425 homepage = "https://github.com/bhilburn/powerlevel9k";
2526 license = lib.licenses.mit;
2627