Skip to content

Commit

Permalink
maintainers: add <imrying>.
Browse files Browse the repository at this point in the history
use by-name instead
  • Loading branch information
imrying committed Mar 28, 2024
1 parent 69a2818 commit 1c501f4
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 39 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8431,6 +8431,12 @@
fingerprint = "F5B2 BE1B 9AAD 98FE 2916 5597 3665 FFF7 9D38 7BAA";
}];
};
imrying = {
email = "philiprying@gmail.com";
github = "imrying";
githubId = 36996706;
name = "Philip Rying";
};
imuli = {
email = "i@imu.li";
github = "imuli";
Expand Down
35 changes: 35 additions & 0 deletions pkgs/by-name/ds/dstep/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ lib, stdenv, fetchzip }:
let
version = "1.0.0";
sources = {
x86_64-linux = fetchzip {
url =
"https://github.com/jacob-carlborg/dstep/releases/download/v${version}/dstep-${version}-linux-x86_64.tar.xz";
hash = "sha256-7smk97r0bszP+3AfAO1YMge11dqtIn8F6qy1X0Y7LrU=";
};
x86_64-darwin = fetchzip {
url =
"https://github.com/jacob-carlborg/dstep/releases/download/v${version}/dstep-${version}-macos.tar.xz";
hash = "sha256-ZYFmIKYgbejU23z+0agagzNJqfS0Q3P9oe9OA75GUQk=";
};
};
in stdenv.mkDerivation {
name = "dstep";

src = sources.${stdenv.hostPlatform.system} or (throw
"Unsupported system: ${stdenv.hostPlatform.system}");

installPhase = ''
install -Dm755 dstep $out/bin
'';

meta = with lib; {
description =
"A tool for converting C and Objective-C headers to D modules";
homepage = "https://github.com/jacob-carlborg/dstep";
license = licenses.boost;
mainProgram = "dstep";
maintainers = with maintainers; [ imrying ];
platforms = builtins.attrNames sources;
};
}
37 changes: 0 additions & 37 deletions pkgs/tools/misc/dstep/default.nix

This file was deleted.

2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7555,8 +7555,6 @@ with pkgs;

dropbear = callPackage ../tools/networking/dropbear { };

dstep = callPackage ../tools/misc/dstep { };

dsview = qt6Packages.callPackage ../applications/science/electronics/dsview { };

dtach = callPackage ../tools/misc/dtach { };
Expand Down

0 comments on commit 1c501f4

Please sign in to comment.