···1{ lib, stdenv, buildGoModule, fetchFromGitHub, buildPackages, installShellFiles, fetchpatch
2, makeWrapper
3, enableCmount ? true, fuse, macfuse-stubs
04}:
56buildGoModule rec {
···57 --suffix PATH : "${lib.makeBinPath [ fuse ] }" \
58 --prefix LD_LIBRARY_PATH : "${fuse}/lib"
59 '';
00006061 meta = with lib; {
62 description = "Command line program to sync files and directories to and from major cloud storage";
···1{ lib, stdenv, buildGoModule, fetchFromGitHub, buildPackages, installShellFiles, fetchpatch
2, makeWrapper
3, enableCmount ? true, fuse, macfuse-stubs
4+, librclone
5}:
67buildGoModule rec {
···58 --suffix PATH : "${lib.makeBinPath [ fuse ] }" \
59 --prefix LD_LIBRARY_PATH : "${fuse}/lib"
60 '';
61+62+ passthru.tests = {
63+ inherit librclone;
64+ };
6566 meta = with lib; {
67 description = "Command line program to sync files and directories to and from major cloud storage";
+32
pkgs/applications/radio/fm-tune/default.nix
···00000000000000000000000000000000
···1+{ lib, stdenv, fetchFromGitHub, pkg-config, liquid-dsp, soapysdr }:
2+3+stdenv.mkDerivation rec {
4+ pname = "fm-tune";
5+ version = "1.1";
6+7+ src = fetchFromGitHub {
8+ owner = "viraptor";
9+ repo = "fm_tune";
10+ rev = version;
11+ sha256 = "pwL2G1Ni1Ixw/N0diSoGGIoVrtmF92mWZ5i57OOvkX4=";
12+ };
13+14+ nativeBuildInputs = [ pkg-config ];
15+16+ buildInputs = [ liquid-dsp soapysdr ];
17+18+ meta = with lib; {
19+ description = "Find initial calibration offset for SDR devices";
20+ longDescription = ''
21+ fm_tune finds the initial offset for calibrating an SDR device. This is
22+ based a given FM radio station frequency. The offset given by this tool is
23+ not precise, but can be useful as a starting point for other tools which
24+ cannot correct for very large errors.
25+ '';
26+ homepage = "https://github.com/viraptor/fm_tune";
27+ license = licenses.asl20;
28+ platforms = platforms.unix;
29+ maintainers = with maintainers; [ viraptor ];
30+ mainProgram = "fm_tune";
31+ };
32+}
···1{ lib, stdenv, fetchFromGitHub, substituteAll, pkgs, bash }:
23-# To make use of this derivation, use
4-# `programs.zsh.promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";`
56let
7 # match gitstatus version with given `gitstatus_version`:
···49 meta = {
50 changelog = "https://github.com/romkatv/powerlevel10k/releases/tag/v${version}";
51 description = "A fast reimplementation of Powerlevel9k ZSH theme";
000052 homepage = "https://github.com/romkatv/powerlevel10k";
53 license = lib.licenses.mit;
54 platforms = lib.platforms.unix;
···1{ lib, stdenv, fetchFromGitHub, substituteAll, pkgs, bash }:
20034let
5 # match gitstatus version with given `gitstatus_version`:
···47 meta = {
48 changelog = "https://github.com/romkatv/powerlevel10k/releases/tag/v${version}";
49 description = "A fast reimplementation of Powerlevel9k ZSH theme";
50+ longDescription = ''
51+ To make use of this derivation, use
52+ `programs.zsh.promptInit = "source ''${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";`
53+ '';
54 homepage = "https://github.com/romkatv/powerlevel10k";
55 license = lib.licenses.mit;
56 platforms = lib.platforms.unix;
+4-3
pkgs/shells/zsh/zsh-powerlevel9k/default.nix
···1{ lib, stdenv, fetchFromGitHub }:
23-# To make use of this derivation, use
4-# `programs.zsh.promptInit = "source ${pkgs.zsh-powerlevel9k}/share/zsh-powerlevel9k/powerlevel9k.zsh-theme";`
5-6stdenv.mkDerivation {
7 pname = "powerlevel9k";
8 version = "2017-11-10";
···2122 meta = {
23 description = "A beautiful theme for zsh";
000024 homepage = "https://github.com/bhilburn/powerlevel9k";
25 license = lib.licenses.mit;
26
···1{ lib, stdenv, fetchFromGitHub }:
20003stdenv.mkDerivation {
4 pname = "powerlevel9k";
5 version = "2017-11-10";
···1819 meta = {
20 description = "A beautiful theme for zsh";
21+ longDescription = ''
22+ To make use of this derivation, use
23+ `programs.zsh.promptInit = "source ''${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";`
24+ '';
25 homepage = "https://github.com/bhilburn/powerlevel9k";
26 license = lib.licenses.mit;
27