mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
adding grip, a gui rip application (segfaults on amd64 ?)
svn path=/nixpkgs/trunk/; revision=17305
This commit is contained in:
parent
295c76b1c1
commit
d0d9fc300f
19
pkgs/applications/misc/grip/default.nix
Normal file
19
pkgs/applications/misc/grip/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "grip-1.0.19";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://prdownloads.sourceforge.net/grip/grip-3.2.0.tar.gz;
|
||||
sha256 = "1jh5x35rq15n8ivlp9wbdx8x9mj6agf5rfdv8sd6gai851zsclas";
|
||||
};
|
||||
|
||||
buildInputs = [gtk glib pkgconfig libgnome libgnomeui vte curl];
|
||||
|
||||
meta = {
|
||||
description = "grip";
|
||||
homepage = http://nostatic.org/grip;
|
||||
license = "GPLv2";
|
||||
maintainers = [args.lib.maintainers.marcweber];
|
||||
platforms = args.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -6597,6 +6597,12 @@ let
|
||||
inherit stdenv fetchurl openssl;
|
||||
};
|
||||
|
||||
grip = import ../applications/misc/grip {
|
||||
inherit fetchurl stdenv lib grip pkgconfig curl;
|
||||
inherit (gtkLibs) gtk glib;
|
||||
inherit (gnome) libgnome libgnomeui vte;
|
||||
};
|
||||
|
||||
gwenview = import ../applications/graphics/gwenview {
|
||||
inherit stdenv fetchurl exiv2 zlib libjpeg perl libpng expat qt3;
|
||||
inherit (kde3) kdelibs;
|
||||
|
Loading…
Reference in New Issue
Block a user