fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{stdenv, fetchurl}:
2
3stdenv.mkDerivation {
4 name = "ucl-1.03";
5 src = fetchurl {
6 url = http://www.oberhumer.com/opensource/ucl/download/ucl-1.03.tar.gz;
7 sha256 = "b865299ffd45d73412293369c9754b07637680e5c826915f097577cd27350348";
8 };
9
10 meta = {
11 homepage = http://www.oberhumer.com/opensource/ucl/;
12 description = "Portable lossless data compression library";
13 license = stdenv.lib.licenses.gpl2;
14 };
15}