1ebfe95372
* fix cross-compilation * clarify license
30 lines
719 B
Nix
30 lines
719 B
Nix
{lib, stdenv, fetchurl, zlib}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cramfsswap";
|
|
version = "1.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/c/cramfsswap/${pname}_${version}.tar.xz";
|
|
sha256 = "10mj45zx71inaa3l1d81g64f7yn1xcprvq4v4yzpdwbxqmqaikw1";
|
|
};
|
|
|
|
# Needed for cross-compilation
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace 'strip ' '$(STRIP) '
|
|
'';
|
|
|
|
buildInputs = [zlib];
|
|
|
|
installPhase = ''
|
|
install --target $out/bin -D cramfsswap
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Swap endianess of a cram filesystem (cramfs)";
|
|
homepage = "https://packages.debian.org/sid/utils/cramfsswap";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|