mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
20 lines
527 B
Nix
20 lines
527 B
Nix
{stdenv, fetchurl, zlib}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cramfsswap-1.4.1";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = mirror://debian/pool/main/c/cramfsswap/cramfsswap_1.4.1.tar.gz;
|
|
sha256 = "0c6lbx1inkbcvvhh3y6fvfaq3w7d1zv7psgpjs5f3zjk1jysi9qd";
|
|
};
|
|
|
|
buildInputs = [zlib];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "swap endianess of a cram filesystem (cramfs)";
|
|
homepage = "https://packages.debian.org/sid/utils/cramfsswap";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|