summary refs log tree commit diff
path: root/pkgs/development/lisp-modules/quicklisp-to-nix-output/nibbles.nix
blob: 83c2b5a7bc20fe2134b6634c67f201935a482af8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args @ { fetchurl, ... }:
rec {
  baseName = ''nibbles'';
  version = ''20161204-git'';

  description = ''A library for accessing octet-addressed blocks of data in big- and little-endian orders'';

  deps = [ ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/nibbles/2016-12-04/nibbles-20161204-git.tgz'';
    sha256 = ''06cdnivq2966crpj8pidqmwagaif848yvq4fjqq213f3wynwknh4'';
  };

  overrides = x: {
  };
}