cramfsprogs: init at 1.1

Signed-off-by: Pamplemousse <xav.maso@gmail.com>
This commit is contained in:
Pamplemousse 2020-07-30 16:12:37 -07:00 committed by Jon
parent 4efcd73d72
commit ce10e04adf
3 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv
, fetchurl
, zlib
}:
stdenv.mkDerivation rec {
pname = "cramfsprogs";
version = "1.1";
src = fetchurl {
url = "mirror://debian/pool/main/c/cramfs/cramfs_${version}.orig.tar.gz";
sha256 = "0s13sabykbkbp0pcw8clxddwzxckyq7ywm2ial343ip7qjiaqg0k";
};
# CramFs is unmaintained upstream: https://tracker.debian.org/pkg/cramfs.
# So patch the "missing include" bug ourselves.
patches = [ ./include-sysmacros.patch ];
installPhase = ''
install --target $out/bin -D cramfsck mkcramfs
'';
buildInputs = [ zlib ];
meta = with stdenv.lib; {
description = "Tools to create, check, and extract content of CramFs images";
homepage = "https://packages.debian.org/jessie/cramfsprogs";
license = licenses.gpl2;
maintainers = with maintainers; [ pamplemousse ];
platforms = platforms.linux;
};
}

View file

@ -0,0 +1,12 @@
diff --git a/mkcramfs.c b/mkcramfs.c
index a2ef018959d..bec83c112d1 100644
--- a/mkcramfs.c
+++ b/mkcramfs.c
@@ -22,6 +22,7 @@
* If you change the disk format of cramfs, please update fs/cramfs/README.
*/
+#include <sys/sysmacros.h>
#include <sys/types.h>
#include <stdio.h>
#include <sys/stat.h>

View file

@ -16963,6 +16963,8 @@ in
cryptsetup = callPackage ../os-specific/linux/cryptsetup { };
cramfsprogs = callPackage ../os-specific/linux/cramfsprogs { };
cramfsswap = callPackage ../os-specific/linux/cramfsswap { };
crda = callPackage ../os-specific/linux/crda { };