summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-04-07 22:24:06 +0000
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-04-10 00:19:35 +0300
commit2db5b5a0093d3e9ac55bfb948aa44feb7312504a (patch)
tree14f42f8410862dc4561b418002a5a1ceb5ada1ad /pkgs
parentf2655dd0c7cf1b33700446f57cc5651bd29c1831 (diff)
downloadnixpkgs-2db5b5a0093d3e9ac55bfb948aa44feb7312504a.tar
nixpkgs-2db5b5a0093d3e9ac55bfb948aa44feb7312504a.tar.gz
nixpkgs-2db5b5a0093d3e9ac55bfb948aa44feb7312504a.tar.bz2
nixpkgs-2db5b5a0093d3e9ac55bfb948aa44feb7312504a.tar.lz
nixpkgs-2db5b5a0093d3e9ac55bfb948aa44feb7312504a.tar.xz
nixpkgs-2db5b5a0093d3e9ac55bfb948aa44feb7312504a.tar.zst
nixpkgs-2db5b5a0093d3e9ac55bfb948aa44feb7312504a.zip
verbiste: init at 0.1.44
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/verbiste/default.nix24
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/misc/verbiste/default.nix b/pkgs/applications/misc/verbiste/default.nix
new file mode 100644
index 00000000000..3d4c35559e3
--- /dev/null
+++ b/pkgs/applications/misc/verbiste/default.nix
@@ -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 ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index cffdc0addc5..3de94189158 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -15823,6 +15823,10 @@ with pkgs;
 
   vdpauinfo = callPackage ../tools/X11/vdpauinfo { };
 
+  verbiste = callPackage ../applications/misc/verbiste {
+    inherit (gnome2) libgnomeui;
+  };
+
   vim = callPackage ../applications/editors/vim {
     inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
   };