Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3791770384cf
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7c08ba312b0b
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Jan 23, 2020

  1. maintainers: add kraem

    kraem committed Jan 23, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    89f80c0 View commit details
  2. rar2fs: init at 1.28.0

    kraem authored and primeos committed Jan 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    04bf042 View commit details
  3. unrar: Install all C++ header files into the "dev" output

    This is e.g. required for the rar2fs build [0], which needs at least
    version.hpp, rar.hpp, dllext.hpp, dll.hpp, and headers5.hpp.
    
    At least Gentoo does this as well [1] but most other distributions only
    install dll.hpp or no header files at all.
    
    [0]: #78189
    [1]: https://gitweb.gentoo.org/repo/gentoo.git/tree/app-arch/unrar/unrar-5.8.5.ebuild
    primeos committed Jan 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    983f39c View commit details

Commits on Jan 24, 2020

  1. Merge pull request #78189 from kraem/master

    rar2fs: init at 1.28.0
    primeos authored Jan 24, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7c08ba3 View commit details
Showing with 51 additions and 1 deletion.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +4 −1 pkgs/tools/archivers/unrar/default.nix
  3. +39 −0 pkgs/tools/filesystems/rar2fs/default.nix
  4. +2 −0 pkgs/top-level/all-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -3818,6 +3818,12 @@
githubId = 787421;
name = "Kevin Quick";
};
kraem = {
email = "me@kraem.xyz";
github = "kraem";
githubId = 26622971;
name = "Ronnie Ebrin";
};
kragniz = {
email = "louis@kragniz.eu";
github = "kragniz";
5 changes: 4 additions & 1 deletion pkgs/tools/archivers/unrar/default.nix
Original file line number Diff line number Diff line change
@@ -22,6 +22,8 @@ stdenv.mkDerivation rec {
make lib
'';

outputs = [ "out" "dev" ];

installPhase = ''
install -Dt "$out/bin" unrar
@@ -30,7 +32,8 @@ stdenv.mkDerivation rec {
$out/share/doc/unrar
install -Dm755 libunrar.so $out/lib/libunrar.so
install -D dll.hpp $out/include/unrar/dll.hpp
install -Dt $dev/include/unrar/ *.hpp
'';

setupHook = ./setup-hook.sh;
39 changes: 39 additions & 0 deletions pkgs/tools/filesystems/rar2fs/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{ stdenv
, fetchFromGitHub
, autoreconfHook
, fuse
, unrar
}:

stdenv.mkDerivation rec {
pname = "rar2fs";
version = "1.28.0";

src = fetchFromGitHub {
owner = "hasse69";
repo = pname;
rev = "v${version}";
sha256 = "0fmdqrs5yvn89ngc26vj5ggnalpwrdm8pdcfszw1wflh78hvd8kb";
};

postPatch = ''
substituteInPlace get-version.sh \
--replace "which echo" "echo"
'';

nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ fuse unrar ];

configureFlags = [
"--with-unrar=${unrar.dev}/include/unrar"
"--disable-static-unrar"
];

meta = with stdenv.lib; {
description = "FUSE file system for reading RAR archives";
homepage = https://hasse69.github.io/rar2fs/;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ kraem ];
platforms = with platforms; linux ++ freebsd;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2971,6 +2971,8 @@ in
inherit (darwin.apple_sdk.frameworks) Security;
};

rar2fs = callPackage ../tools/filesystems/rar2fs { };

s-tar = callPackage ../tools/archivers/s-tar {};

sonota = callPackage ../tools/misc/sonota { };