mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #16990 from mimadrid/update/xarchiver-0.5.4.6
xarchiver: 0.5.4 -> 0.5.4.6
This commit is contained in:
commit
b02538b8da
1 changed files with 9 additions and 7 deletions
|
@ -1,18 +1,20 @@
|
|||
{ stdenv, fetchurl, gtk2, pkgconfig, intltool }:
|
||||
{ stdenv, fetchFromGitHub, gtk, pkgconfig, intltool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.5.4";
|
||||
version = "0.5.4.6";
|
||||
name = "xarchiver-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/xarchiver/${name}.tar.bz2";
|
||||
sha256 = "1x1f8m71cvv2p1364rz99iqs2caxj7yrb46aikz6xigwg4wsfgz6";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ib";
|
||||
repo = "xarchiver";
|
||||
rev = "${name}";
|
||||
sha256 = "1w6b4cchd4prswrn981a7bkq44ad51xm2qiwlpzy43ynql14q877";
|
||||
};
|
||||
|
||||
buildInputs = [ gtk2 pkgconfig intltool ];
|
||||
buildInputs = [ gtk pkgconfig intltool ];
|
||||
|
||||
meta = {
|
||||
description = "GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
|
||||
description = "GTK+ frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
|
||||
homepage = http://sourceforge.net/projects/xarchiver/;
|
||||
maintainers = [ stdenv.lib.maintainers.domenkozar ];
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
|
|
Loading…
Reference in a new issue