python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / nix / dnadd / default.nix
blob3f4d76a9c4d4e8dc4db30b6d7197fbcec530c648
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "dnadd";
5   version = "1.0.0";
7   src = fetchFromGitHub {
8     owner = "JoeLancaster";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1vzbgz8y9gj4lszsx4iczfbrj373sl4wi43j7rp46zfcbw323d4r";
12   };
14   makeFlags = [ "PREFIX=$(out)" ];
16   meta = with lib; {
17     homepage = "https://github.com/joelancaster/dnadd";
18     description = "Adds packages declaratively on the command line";
19     license = licenses.gpl3Plus;
20     maintainers = with maintainers; [ joelancaster ];
21   };