This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lib | |
, buildPythonPackage | |
, fetchPypi | |
, isPyPy | |
, pytestCheckHook | |
, asttokens | |
, executing | |
, pure-eval | |
, stack-data | |
, six |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchFromGitHub, lib | |
, python3, pkg-config, nodejs, pnpm, openssl, sqlite, jq | |
, ... }: | |
stdenv.mkDerivation | |
(finalAttrs: rec { | |
pname = "nocodb"; | |
version = "0.257.2"; | |
src = fetchFromGitHub { | |
owner = "nocodb"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lib, stdenv, fetchFromGitHub, pkg-config, autoconf, automake | |
, libtool, nettle, gnutls, gettext, libabigail | |
}: | |
stdenv.mkDerivation rec { | |
pname = "radcli"; | |
version = "1.3.1"; | |
src = fetchFromGitHub { | |
owner = "radcli"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
±²³SolveSpaceREVa | |
Group.h.v=00000001 | |
Group.type=5000 | |
Group.name=#references | |
Group.color=ff000000 | |
Group.skipFirst=0 | |
Group.predef.swapUV=0 | |
Group.predef.negateU=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun use-ansi-process-filter (process) | |
(set-process-filter | |
process | |
(lambda (process string) | |
(internal-default-process-filter process string) | |
(with-current-buffer (process-buffer process) | |
(save-excursion | |
(goto-char (point-max)) | |
(let ((previous-point-max (point-max))) | |
(insert string) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs ? import <nixpkgs> {}, ... }: let | |
inherit (pkgs) | |
stdenv | |
fetchgit | |
; | |
tag = "2.10.1"; | |
commit = "482d91c66"; | |
# git describe --long ${version} | |
version = "${tag}-0-g${commit}"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs ? import <nixpkgs> {}, ... }: pkgs.libsForQt5.callPackage ({ pkgs ? import <nixpkgs> {} | |
, lib | |
, stdenv | |
, fetchFromGitHub | |
, fetchpatch | |
, cmake | |
, ninja | |
, netcdf | |
, coin3d | |
, eigen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs ? import <nixpkgs> {} }: | |
pkgs.buildGoModule { | |
name = "agola"; | |
src = pkgs.fetchFromGitHub { | |
owner = "agola-io"; | |
repo = "agola"; | |
rev = "v0.7.0"; | |
sha256 = "sha256-AiD7mVogWk/TOYy7Ed1aT31h1kbrRwseue5qc3wLOCI="; | |
}; | |
doCheck = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defgroup ulisp-mode nil | |
"Settings for ulisp-mode Lisp source buffers." | |
:prefix "ulisp-" | |
:group 'ulisp) | |
(defcustom ulisp-port "/dev/ttyUSB0" | |
"uLisp serial port" | |
:type 'string | |
:group 'ulisp-mode) | |
(defcustom ulisp-port-speed 115200 | |
"uLisp serial port speed bps" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lua, luaPackages, fetchurl, fetchgit }: | |
luaPackages.buildLuarocksPackage rec { | |
pname = "luastatic"; | |
version = "0.0.12"; | |
knownRockspec = (fetchurl { | |
url = "https://luarocks.org/manifests/ers35/luastatic-${version}-1.rockspec"; | |
sha256 = "sha256-jNxq4gyO+7kN7+Vpvq1iGFrIQ15x+HAkcqa3VqIhUVU="; | |
}).outPath; | |
src = fetchgit { | |
url = "https://github.com/ers35/luastatic"; |
NewerOlder