verbiste: init at 0.1.44
This commit is contained in:
parent
f2655dd0c7
commit
2db5b5a009
24
pkgs/applications/misc/verbiste/default.nix
Normal file
24
pkgs/applications/misc/verbiste/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, libgnomeui, libxml2 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "verbiste-${version}";
|
||||||
|
|
||||||
|
version = "0.1.44";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://perso.b2b2c.ca/~sarrazip/dev/${name}.tar.gz";
|
||||||
|
sha256 = "0vmjr8w3qc64y312a0sj0ask309mmmlmyxp2fsii0ji35ls7m9sw";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ libgnomeui libxml2 ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://sarrazip.com/dev/verbiste.html;
|
||||||
|
description = "French and Italian verb conjugator";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ orivej ];
|
||||||
|
};
|
||||||
|
}
|
@ -15823,6 +15823,10 @@ with pkgs;
|
|||||||
|
|
||||||
vdpauinfo = callPackage ../tools/X11/vdpauinfo { };
|
vdpauinfo = callPackage ../tools/X11/vdpauinfo { };
|
||||||
|
|
||||||
|
verbiste = callPackage ../applications/misc/verbiste {
|
||||||
|
inherit (gnome2) libgnomeui;
|
||||||
|
};
|
||||||
|
|
||||||
vim = callPackage ../applications/editors/vim {
|
vim = callPackage ../applications/editors/vim {
|
||||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user