mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
23 lines
676 B
Nix
23 lines
676 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ucl";
|
|
version = "1.03";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.oberhumer.com/opensource/ucl/download/ucl-${version}.tar.gz";
|
|
sha256 = "b865299ffd45d73412293369c9754b07637680e5c826915f097577cd27350348";
|
|
};
|
|
|
|
# needed to successfully compile with gcc 6+ and modern clang versions where
|
|
# `-Wimplicit-function-declaration` is otherwise on and errors by default
|
|
env.CFLAGS = "-std=c89";
|
|
|
|
meta = {
|
|
homepage = "http://www.oberhumer.com/opensource/ucl/";
|
|
description = "Portable lossless data compression library";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|