about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/mozilla-plugins/fribid
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2014-08-25 16:58:41 +0200
committerEdward Tjörnhammar <ed@cflags.cc>2014-08-25 17:00:23 +0200
commit35d7d01d065dd218575080f13677cd0ab833e9e2 (patch)
tree71b0bda1937f48c0a1e6e83540fcc8c929dda830 /pkgs/applications/networking/browsers/mozilla-plugins/fribid
parent10e3cf6f5aa8e9bf5b969a02cc59256eff272279 (diff)
downloadnixlib-35d7d01d065dd218575080f13677cd0ab833e9e2.tar
nixlib-35d7d01d065dd218575080f13677cd0ab833e9e2.tar.gz
nixlib-35d7d01d065dd218575080f13677cd0ab833e9e2.tar.bz2
nixlib-35d7d01d065dd218575080f13677cd0ab833e9e2.tar.lz
nixlib-35d7d01d065dd218575080f13677cd0ab833e9e2.tar.xz
nixlib-35d7d01d065dd218575080f13677cd0ab833e9e2.tar.zst
nixlib-35d7d01d065dd218575080f13677cd0ab833e9e2.zip
FriBID: 1.0.2 -> 1.0.4
Changed from let to rec version.
Added longDescription.
Diffstat (limited to 'pkgs/applications/networking/browsers/mozilla-plugins/fribid')
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/fribid/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/fribid/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/fribid/default.nix
index 8cda5ad5762f..229aa4f23ba1 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/fribid/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/fribid/default.nix
@@ -1,20 +1,19 @@
 { stdenv, fetchurl, pkgconfig, openssl, glib, libX11, gtk2, gettext, intltool }:
 
-let version = "1.0.2"; in
 stdenv.mkDerivation rec {
   name = "fribid-${version}";
+  version = "1.0.4";
   builder = ./builder.sh;
 
   src = fetchurl {
     url = "https://fribid.se/releases/source/${name}.tar.bz2";
-    sha256 = "d7cd9adf04fedf50b266a5c14ddb427cbb263d3bc160ee0ade03aca9d5356e5c";
+    sha256 = "a679f3a0534d5f05fac10b16b49630a898c0b721cfa24d2c827fa45485476649";
   };
 
   buildInputs = [ pkgconfig openssl libX11 gtk2 glib gettext intltool ];
   patches = [
     ./translation-xgettext-to-intltool.patch
     ./plugin-linkfix.patch
-    ./emulated-version.patch
     ./ipc-lazytrace.patch
     ];
 
@@ -22,10 +21,15 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "A browser plugin to manage Swedish BankID:s";
+    longDescription = ''
+      FriBID is an open source software for the Swedish e-id system
+      called BankID. FriBID also supports processor architectures and
+      Linux/BSD distributions that the official software doesn't
+      support.
+    '';
     homepage = http://fribid.se;
     license = [ "GPLv2" "MPLv1" ];
     maintainers = [ stdenv.lib.maintainers.edwtjo ];
     platforms = with stdenv.lib.platforms; linux;
   };
 }
-