1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libotr/3.2.nix

12 lines
275 B
Nix
Raw Normal View History

2013-04-15 19:20:20 +01:00
{stdenv, fetchurl, libgcrypt}:
stdenv.mkDerivation {
2013-06-04 10:35:07 +01:00
name = "libotr-3.2.1";
2013-04-15 19:20:20 +01:00
src = fetchurl {
url = http://www.cypherpunks.ca/otr/libotr-3.2.0.tar.gz;
sha256 = "14v6idnqpp2vhgir9bzp1ay2gmhqsb8iavrkwmallakfwch9sfyq";
};
propagatedBuildInputs = [libgcrypt];
}