mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
adding jigdo-lite
svn path=/nixpkgs/trunk/; revision=17020
This commit is contained in:
parent
d3cb19bd41
commit
74c5a4d9d9
26
pkgs/applications/misc/jigdo/default.nix
Normal file
26
pkgs/applications/misc/jigdo/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
args: with args;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "jigdo-0.7.3";
|
||||
|
||||
# Debian sources
|
||||
src = fetchurl {
|
||||
url = http://ftp.de.debian.org/debian/pool/main/j/jigdo/jigdo_0.7.3.orig.tar.gz;
|
||||
sha256 = "1qvqzgzb0dzq82fa1ffs6hyij655rajnfwkljk1y0mnkygnha1xv";
|
||||
};
|
||||
|
||||
buildInputs = [db45 gtk bzip2];
|
||||
|
||||
configureFlags = "--without-libdb";
|
||||
|
||||
meta = {
|
||||
description = "tool designed to ease the distribution of very large files over the internet";
|
||||
homepage = http://atterer.net/jigdo/;
|
||||
license = "GPLv2";
|
||||
};
|
||||
|
||||
patches = fetchurl {
|
||||
url = http://ftp.de.debian.org/debian/pool/main/j/jigdo/jigdo_0.7.3-2.diff.gz;
|
||||
sha256 = "0jnlzm9m2hjlnw0zs2fv456ml5r2jj2q1lncqbrgg52lq18f6fa3";
|
||||
};
|
||||
}
|
|
@ -6727,6 +6727,11 @@ let
|
|||
inherit fetchurl stdenv ant;
|
||||
};
|
||||
|
||||
jigdo = import ../applications/misc/jigdo {
|
||||
inherit fetchurl stdenv db45 libwpd bzip2;
|
||||
inherit (gtkLibs) gtk;
|
||||
};
|
||||
|
||||
joe = import ../applications/editors/joe {
|
||||
inherit stdenv fetchurl;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue