nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl, check }:
2
3stdenv.mkDerivation rec {
4 name = "ding-libs-${version}";
5 version = "0.6.0";
6
7 src = fetchurl {
8 url = "https://fedorahosted.org/released/ding-libs/ding-libs-${version}.tar.gz";
9 sha1 = "c8ec86cb93a26e013a13b12a7b0b3fbc1bca16c1";
10 };
11
12 enableParallelBuilding = true;
13 buildInputs = [ check ];
14
15 doCheck = true;
16
17 meta = {
18 description = "'D is not GLib' utility libraries";
19 homepage = https://fedorahosted.org/sssd/;
20 platforms = with stdenv.lib.platforms; linux;
21 maintainers = with stdenv.lib.maintainers; [ e-user ];
22 license = [ stdenv.lib.licenses.gpl3 stdenv.lib.licenses.lgpl3 ];
23 };
24}