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.
29 lines
751 B
Nix
29 lines
751 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lzham";
|
|
version = "1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "richgel999";
|
|
repo = "lzham_codec";
|
|
rev = "v${lib.replaceStrings ["."] ["_"] version}_release";
|
|
sha256 = "14c1zvzmp1ylp4pgayfdfk1kqjb23xj4f7ll1ra7b18wjxc9ja1v";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ../bin_linux/lzhamtest $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lossless data compression codec with LZMA-like ratios but 1.5x-8x faster decompression speed";
|
|
mainProgram = "lzhamtest";
|
|
homepage = "https://github.com/richgel999/lzham_codec";
|
|
license = with licenses; [ mit ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|