mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
ax25-apps: remove unnecessary rec and with
This commit is contained in:
parent
fd27de630d
commit
5a42e0f538
1 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@
|
||||||
ncurses,
|
ncurses,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation {
|
||||||
pname = "ax25-apps";
|
pname = "ax25-apps";
|
||||||
version = "0.0.8-rc5-unstable-2021-05-13";
|
version = "0.0.8-rc5-unstable-2021-05-13";
|
||||||
|
|
||||||
|
@ -32,11 +32,11 @@ stdenv.mkDerivation rec {
|
||||||
"--program-transform-name=s@^call$@ax&@;s@^listen$@ax&@"
|
"--program-transform-name=s@^call$@ax&@;s@^listen$@ax&@"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "AX.25 ham radio applications";
|
description = "AX.25 ham radio applications";
|
||||||
homepage = "https://linux-ax25.in-berlin.de/wiki/Main_Page";
|
homepage = "https://linux-ax25.in-berlin.de/wiki/Main_Page";
|
||||||
license = licenses.lgpl21Only;
|
license = lib.licenses.lgpl21Only;
|
||||||
maintainers = with maintainers; [ sarcasticadmin ];
|
maintainers = with lib.maintainers; [ sarcasticadmin ];
|
||||||
platforms = platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue