nixpkgs/pkgs/tools/archivers/xarchiver/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

25 lines
693 B
Nix

{ stdenv, fetchFromGitHub, gtk2, pkgconfig, intltool }:
stdenv.mkDerivation rec {
version = "0.5.4.7";
name = "xarchiver-${version}";
src = fetchFromGitHub {
owner = "ib";
repo = "xarchiver";
rev = "${name}";
sha256 = "0w9lx8d8r50j48qfhn2r0dlcnwy3pjyy6xjvgpr0qagy5l1q1qj4";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 intltool ];
meta = {
description = "GTK+ frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
homepage = https://github.com/ib/xarchiver;
maintainers = [ stdenv.lib.maintainers.domenkozar ];
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
};
}