mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
dps8m: init at 3.0.1
This commit is contained in:
parent
e841544d6c
commit
2526562588
1 changed files with 47 additions and 0 deletions
47
pkgs/by-name/dp/dps8m/package.nix
Normal file
47
pkgs/by-name/dp/dps8m/package.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitLab
|
||||
, libuv
|
||||
, coreutils-full
|
||||
, pkg-config
|
||||
, gnugrep
|
||||
, gnused
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dps8m";
|
||||
version = "3.0.1";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "dps8m";
|
||||
repo = "dps8m";
|
||||
rev = "R${version}";
|
||||
hash = "sha256-YCDeHryxXZXOXqUXkbWwH7Vna+ljzydFXPeo2et87x8=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
env = {
|
||||
ENV = "${coreutils-full}/bin/env";
|
||||
GREP = "${gnugrep}/bin/grep";
|
||||
SED = "${gnused}/bin/sed";
|
||||
PREFIX = placeholder "out";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
coreutils-full
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libuv
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "DPS8M: GE / Honeywell / Bull DPS‑8/M mainframe simulator";
|
||||
homepage = "https://gitlab.com/dps8m/dps8m";
|
||||
license = licenses.icu;
|
||||
maintainers = with maintainers; [ matthewcroughan sarcasticadmin ];
|
||||
mainProgram = "dps8m";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue