2007-03-24 12:01:50 +00:00
|
|
|
{stdenv, fetchurl, zlib}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-03-03 21:37:55 +00:00
|
|
|
name = "cramfsswap-1.4.1";
|
2007-03-24 12:01:50 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2015-05-21 21:52:24 +00:00
|
|
|
url = mirror://debian/pool/main/c/cramfsswap/cramfsswap_1.4.1.tar.gz;
|
2008-03-03 21:37:55 +00:00
|
|
|
sha256 = "0c6lbx1inkbcvvhh3y6fvfaq3w7d1zv7psgpjs5f3zjk1jysi9qd";
|
2007-03-24 12:01:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [zlib];
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2018-08-15 18:19:36 +00:00
|
|
|
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;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2007-03-24 12:01:50 +00:00
|
|
|
}
|