nixpkgs/pkgs/development/libraries/libxdg-basedir/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

17 lines
491 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "libxdg-basedir-1.0.2";
src = fetchurl {
url = "http://n.ethz.ch/student/nevillm/download/libxdg-basedir/${name}.tar.gz";
sha256 = "0fibbzba228gdk05lfi8cgfrsp80a2gnjbwka0pzpkig0fz8pp9i";
};
meta = {
homepage = http://n.ethz.ch/student/nevillm/download/libxdg-basedir/;
description = "Implementation of the XDG Base Directory specification";
license = "BSD";
platforms = stdenv.lib.platforms.unix;
};
}