nixpkgs/pkgs/by-name/qn/qnial/package.nix
Anderson Torres cab2a1296e
treewide: remove AndersonTorres from maintainers
As I said before, I want to keep a narrow focus on Nixpkgs. Now that I am back
at undergrad, this focus should be even narrower: I will keep my eyes on Emacs,
and nothing else.
2025-02-12 00:36:02 -03:00

54 lines
882 B
Nix

{
lib,
fetchFromBitbucket,
libxcrypt,
ncurses,
pkg-config,
stdenv,
unzip,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qnial";
version = "6.3_1";
src = fetchFromBitbucket {
owner = "museoa";
repo = "qnial";
rev = finalAttrs.version;
hash = "sha256-QhjEq6YKO6OKy7+dlHeTWQvCvrF8zS7o8QfPD8WDXy0=";
};
nativeBuildInputs = [
pkg-config
unzip
];
buildInputs = [
ncurses
libxcrypt
];
strictDeps = true;
preConfigure = ''
cd build
'';
installPhase = ''
cd ..
mkdir -p $out/bin $out/lib
cp build/nial $out/bin/
cp -r niallib $out/lib/
'';
meta = {
description = "Array language from Nial Systems";
homepage = "https://bitbucket.com/museoa/qnial";
license = lib.licenses.artistic1;
mainProgram = "nial";
maintainers = [ ];
platforms = lib.platforms.linux;
};
})