1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/data/misc/shared-desktop-ontologies/default.nix
Lluís Batlle i Rossell 9501307305 Updating the url for shared desktop ontologies.
svn path=/nixpkgs/trunk/; revision=19943
2010-02-11 22:22:00 +00:00

15 lines
434 B
Nix

{stdenv, fetchurl, cmake}:
stdenv.mkDerivation {
name = "shared-desktop-ontologies-0.2";
src = fetchurl {
url = mirror://sourceforge/oscaf/shared-desktop-ontologies-0.2.tar.bz2;
sha256 = "1w9gfprrp518hb7nm5wspxjd7xx0h08bph6asrx5vrx7j7fzg4m7";
};
buildInputs = [ cmake ];
meta = {
description = "Ontologies necessary for the Nepomuk semantic desktop";
maintainers = [ stdenv.lib.maintainers.sander ];
};
}