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
[electron-app-shell-env] savanni@garnet:~/s/electron-app $ locale | |
LANG=eo.UTF-8 | |
LC_CTYPE="eo.UTF-8" | |
LC_NUMERIC="eo.UTF-8" | |
LC_TIME="eo.UTF-8" | |
LC_COLLATE="eo.UTF-8" | |
LC_MONETARY="eo.UTF-8" | |
LC_MESSAGES="eo.UTF-8" | |
LC_PAPER="eo.UTF-8" | |
LC_NAME="eo.UTF-8" |
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
[go-shell] savanni@lapis:~/src/golang $ ls -l | |
total 81928 | |
drwxr-xr-x 5 savanni staff 160 Dec 17 2018 bin | |
drwxr-xr-x 4 savanni staff 128 Jun 11 2018 pkg | |
-rw-r--r-- 1 savanni staff 923 Jun 11 2018 shell.nix | |
drwxr-xr-x 9 savanni staff 288 Jun 10 2018 src |
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 <nixos> {} | |
, fetchurl ? pkgs.fetchurl | |
, buildFHS ? pkgs.buildFHSUserEnv | |
, mkDerivation ? pkgs.stdenv.mkDerivation | |
}: | |
let | |
pkgUrl = "https://nodejs.org/dist/v8.4.0/node-v8.4.0-linux-x64.tar.xz"; | |
pkgSha = "7fd86abad06f96cb2f889c2a0e25686a3de3e9a078ad946ded91ee4f28d8218a"; | |
in rec { | |
node-env = mkDerivation { |
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> {} | |
, ctags ? pkgs.ctags | |
, makeWrapper ? pkgs.makeWrapper | |
, makeBinPath ? pkgs.lib.makeBinPath | |
}: | |
pkgs.stdenv.mkDerivation { | |
name = "pytags"; | |
buildInputs = [ ctags | |
makeWrapper |
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
./configure --target=arm-linux-gnueabihf --prefix=<nix path> --disable-nls --disable-shared --disable-multilib --disable-decimal-float --disable-threads --disable-libmudflap --disable-libssp --disable-libgomp --enable-languages=c |
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
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix | |
index d3b4068319..4a227436d0 100644 | |
--- a/pkgs/development/haskell-modules/hackage-packages.nix | |
+++ b/pkgs/development/haskell-modules/hackage-packages.nix | |
@@ -178206,7 +178206,7 @@ self: { | |
}) {applicative = null;}; | |
"statgrab" = callPackage | |
- ({ mkDerivation, async, base, bytestring, statgrab, time | |
+ ({ mkDerivation, async, base, bytestring, libstatgrab, time |
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 <nixos> {} | |
, compiler ? "ghc7103" | |
, libstatgrab ? pkgs.libstatgrab | |
, zlib ? pkgs.zlib | |
}: | |
let | |
systemstats = pkgs.haskell.packages.${compiler}.callPackage ./systemstats.nix { libstatgrab = libstatgrab; }; | |
in pkgs.stdenv.mkDerivation rec { | |
name = "systemstats"; | |
version = "0.2.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
savanni@lapis:~/src/nixpkgs (master)* $ heroku apps | |
Usage: heroku COMMAND [--app APP] [command-specific-options] | |
Help topics, type "heroku help TOPIC" for more details: | |
heroku access # CLI to manage access in Heroku Applications | |
heroku addons # manage add-ons | |
heroku apps # manage apps | |
heroku auth # authentication (login/logout) | |
heroku buildpacks # manage the buildpacks for an app |
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
Prelude ...> t <- forkIO $ catch (catchError (threadDelay 10000000 >> putStrLn "thread finished") (\err -> putStrLn $ "error detected: " <> show err)) (\(err :: AsyncException) -> putStrLn $ "async exception" <> show err) | |
Prelude ...> killThread t | |
asynPrelude ...> c exceptionthread killed | |
Prelude ...> |
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
{ env, pkgs, ghc }: | |
let | |
pname = "purescript"; | |
pversion = "0.10.3"; | |
url = "https://github.com/purescript/purescript/archive/v${pversion}.tar.gz"; | |
sha256 = "46c3f695ccc6e7be3cb2afe1ea9586eafdf51a04f1d40fe7240def0d8693ca68"; | |
in env.mkDerivation rec { | |
name = pname; | |
version = pversion; |
NewerOlder