Skip to content

Commit

Permalink
Merge pull request #276732 from eownerdead/pr/pdpmake
Browse files Browse the repository at this point in the history
pdpmake: init at 1.4.1
  • Loading branch information
pbsds authored Mar 15, 2024
2 parents 3399de5 + 0640818 commit 3d676bb
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
9 changes: 9 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5789,6 +5789,15 @@
githubId = 418227;
name = "Jean-Philippe Braun";
};
eownerdead = {
name = "EOWNERDEAD";
email = "[email protected]";
github = "eownerdead";
githubId = 141208772;
keys = [{
fingerprint = "4715 17D6 2495 A273 4DDB 5661 009E 5630 5CA5 4D63";
}];
};
eperuffo = {
email = "[email protected]";
github = "emanueleperuffo";
Expand Down
29 changes: 29 additions & 0 deletions pkgs/by-name/pd/pdpmake/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "pdpmake";
version = "1.4.1";

src = fetchFromGitHub {
owner = "rmyorston";
repo = "pdpmake";
rev = version;
hash = "sha256-N9MT+3nE8To0ktNTPT9tDHkKRrn4XsTYiTeYdBk9VtI=";
};

makeFlags = [ "PREFIX=$(out)" ];

doCheck = true;
checkTarget = "test";

enableParallelBuilding = true;

meta = with lib; {
homepage = "https://github.com/rmyorston/pdpmake";
description = "Public domain POSIX make";
license = licenses.unlicense;
maintainers = with maintainers; [ eownerdead ];
mainProgram = "pdpmake";
platforms = platforms.all;
badPlatforms = platforms.darwin; # Requires `uimensat`
};
}

0 comments on commit 3d676bb

Please sign in to comment.