nixpkgs/pkgs/tools/misc/ding-libs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
630 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, check }:
stdenv.mkDerivation rec {
pname = "ding-libs";
2017-10-23 16:26:19 +00:00
version = "0.6.1";
src = fetchurl {
url = "https://releases.pagure.org/SSSD/${pname}/${pname}-${version}.tar.gz";
2017-10-23 16:26:19 +00:00
sha256 = "1h97mx2jdv4caiz4r7y8rxfsq78fx0k4jjnfp7x2s7xqvqks66d3";
};
enableParallelBuilding = true;
buildInputs = [ check ];
doCheck = true;
meta = {
description = "'D is not GLib' utility libraries";
homepage = "https://pagure.io/SSSD/ding-libs";
2021-01-15 09:19:50 +00:00
platforms = with lib.platforms; linux;
maintainers = with lib.maintainers; [ ];
2021-01-15 13:21:58 +00:00
license = [ lib.licenses.gpl3 lib.licenses.lgpl3 ];
};
}