summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cramfsswap/default.nix
blob: d183bb25cb569697f746b0d8b7f7b9d3b0221e24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{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;
  };
}