mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
31 lines
941 B
Nix
31 lines
941 B
Nix
{ lib, stdenv, autoreconfHook, fetchurl, libjack2, gtk2, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bitmeter";
|
|
version = "1.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://devel.tlrmx.org/audio/source/${pname}-${version}.tar.gz";
|
|
sha256 = "09ck2gxqky701dc1p0ip61rrn16v0pdc7ih2hc2sd63zcw53g2a7";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ libjack2 gtk2 ];
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-sound/bitmeter/files/bitmeter-1.2-fix-build-system.patch";
|
|
sha256 = "021mz6933iw7mpk6b9cbjr8naj6smbq1hwqjszlyx72qbwrrid7k";
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://devel.tlrmx.org/audio/bitmeter/";
|
|
description = "Also known as jack bitscope. Useful to detect denormals";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "bitmeter";
|
|
};
|
|
}
|