3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #11851 from rycee/bump/keepassx2

keepassx2: 2.0beta2 -> 2.0
This commit is contained in:
Jascha Geerds 2015-12-21 08:02:09 +01:00
commit 98eaf3ac83

View file

@ -1,10 +1,12 @@
{ stdenv, fetchurl, cmake, libgcrypt, qt4, xorg, ... }:
stdenv.mkDerivation {
name = "keepassx2-2.0beta2";
stdenv.mkDerivation rec {
name = "keepassx2-${version}";
version = "2.0";
src = fetchurl {
url = "https://github.com/keepassx/keepassx/archive/2.0-beta2.tar.gz";
sha256 = "0ljf9ws3wh62zd0gyb0vk2qw6pqsmxrlybrfs5mqahf44q92ca2q";
url = "https://www.keepassx.org/releases/${version}/keepassx-${version}.tar.gz";
sha256 = "1ri2r1sldc62hbg74m4pmci0nrjwvv38rqhyzhyjin247an0zd0f";
};
buildInputs = [ cmake libgcrypt qt4 xorg.libXtst ];