Package | Count |
---|---|
multi_json-1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv | 19 |
thread_safe-0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy | 17 |
mini_portile2-15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy | 15 |
addressable-0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l | 14 |
concurrent-ruby-1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an | 13 |
tzinfo-1fjx9j327xpkkdlxwmkl3a8wqj7i4l4jwlrv3z13mg95z9wl253z | 13 |
nokogiri-02bjydih0j515szfv9mls195cvpyidh6ixm7dwbl3s2sbaxxk5s4 | 13 |
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 | |
xinitRc = pkgs.writeScript "zoom-xinitrc" '' | |
#!${pkgs.runtimeShell} | |
${pkgs.zoom-us}/bin/zoom-us & | |
exec ${pkgs.icewm}/bin/icewm | |
''; |
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, ...}: | |
let | |
scope = pkgs.newScope { | |
openssl = pkgs.openssl_1_1; | |
pkgs = pkgs // { openssl = pkgs.openssl_1_1; }; | |
}; | |
beam = pkgs.beam.override { callPackage = scope; }; | |
in beam.interpreters.erlangR22 |
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.mkShell { | |
buildInputs = [ | |
pkgs.hello | |
]; | |
shellHook = '' | |
echo env1 | |
''; |
Package | Times duplicated |
---|---|
github.com/pmezard/go-difflib | 23 |
github.com/davecgh/go-spew | 21 |
golang.org/x/text | 20 |
github.com/stretchr/testify | 18 |
gopkg.in/yaml.v2 | 15 |
github.com/fsnotify/fsnotify | 12 |
github.com/inconshreveable/mousetrap | 12 |
github.com/pkg/errors | 12 |
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, automake, zlib, libpng, libjpeg | |
, freetype, libX11, libXext, yacc, flex }: | |
stdenv.mkDerivation rec { | |
version = "unstable-2019-05-20"; | |
pname = "microwindows"; | |
src = fetchFromGitHub { | |
owner = "ghaerr"; | |
repo = "microwindows"; |
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
#!/usr/bin/env python | |
# | |
# Add binaries to PATH at runtime | |
import subprocess | |
import nix | |
import os | |
def realise_path(store_path: str): |
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
with import <nixpkgs> {}; | |
mkShell { | |
buildInputs = [ | |
(python3.withPackages(ps: [ | |
ps.nixpkgs | |
])) | |
]; | |
} |
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
with import <nixpkgs> { }; | |
let | |
cutPoints = builtins.map (drv: drv.outPath) [ | |
nodejs | |
python2 | |
python3 | |
coreutils | |
openssl.out | |
glibc |
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
with import <nixpkgs> {}; | |
let | |
# An example of how to get xwidgets rather than gtk | |
# overridenEmacs = emacs26.override { withXwidgets = true; }; | |
overridenEmacs = emacs26; | |
emacsPkgs = pkgs.emacsPackagesNgGen overridenEmacs; | |
emacsWithPackages = emacsPkgs.emacsWithPackages; | |
in emacsWithPackages(epkgs: with epkgs; [ |