This file contains hidden or 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> {}; | |
stdenv.mkDerivation { | |
name = "computational-category-theory"; | |
buildInputs = [ | |
smlnj | |
]; | |
shellHook = '' | |
cd programs | |
sml |
This file contains hidden or 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 bash | |
# Messy but hopefully working script to maintain r-modules. Call it with a git | |
# ref (I usually use `master` or `HEAD`) and it will test build all packages | |
# added upstream since that commit. It will also prompt you to remove anything | |
# that's been archived upstream so the attribute set continues to evaluate. | |
# Usage: ./update-r-packages.sh [<git ref>] | |
# Some details and tips: |
This file contains hidden or 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
:set prompt "" | |
:module Sound.Tidal.Context | |
(cps, getNow) <- bpsUtils | |
(d1,t1) <- dirtSetters getNow | |
(d2,t2) <- dirtSetters getNow | |
(d3,t3) <- dirtSetters getNow | |
(d4,t4) <- dirtSetters getNow |
This file contains hidden or 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
source $stdenv/setup | |
PATH=$dpkg/bin:$PATH | |
dpkg -x $src unpacked | |
cp -r unpacked/* $out/ |
This file contains hidden or 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
module Network.Gitit.Plugin.CiteProc | |
where | |
{- This plugin processes bibtex citations using pandoc-citeproc. | |
- It will pick them up from one or more `bib` blocks in the page itself, | |
- like so: | |
- | |
- ~~~{ .bib } | |
- @Book{ kerby1972, | |
- author = {Robert L. Kerby}, |
This file contains hidden or 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
import Text.HTML.Scalpel | |
import Control.Applicative ((<|>)) | |
type Author = String | |
data Comment = TextComment Author String | ImageComment Author URL | |
deriving Show | |
-- allComments :: IO (Maybe [Comment]) | |
-- allComments = scrapeURL "http://example.com/article.html" comments |
This file contains hidden or 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
# Maintainer: Matthew Hiles <[email protected]> | |
# Contributor: Jeffrey David Johnson <[email protected]> | |
pkgname=sdx | |
pkgver=20080224 | |
pkgrel=3 | |
pkgdesc="A utility for making and unpacking starkits." | |
url="http://equi4.com/starkit/sdx.html" | |
depends=(tclkit) | |
arch=('i686' 'x86_64') |
This file contains hidden or 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
# Contributor: BenObiWan <benobiwan @t gmail dot com> | |
# Contributor: Simon Bachmann <[email protected]> | |
# Contributor: Jeffrey David Johnson <[email protected]> | |
pkgname=tclkit | |
pkgver=8.5.1 | |
pkgrel=5 | |
pkgdesc="A compact, single file executable containing Tcl, Tk, IncrTcl, TclVFS and Metakit" | |
url="http://www.equi4.com/tclkit/" | |
arch=('i686' 'x86_64') |