mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +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.
34 lines
835 B
Nix
34 lines
835 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mi2ly";
|
|
version = "0.12";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.savannah.gnu.org/releases/mi2ly/mi2ly.${version}.tar.bz2";
|
|
sha256 = "sha256-lFbqH+syFaQDMbXfb+OUcWnyKnjfVz9yl7DbTTn7JKw=";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-fgnu89-inline" ];
|
|
|
|
buildPhase = "./cc";
|
|
installPhase = ''
|
|
mkdir -p "$out"/{bin,share/doc/mi2ly}
|
|
cp mi2ly "$out/bin"
|
|
cp README Doc.txt COPYING Manual.txt "$out/share/doc/mi2ly"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "MIDI to Lilypond converter";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
homepage = "https://www.nongnu.org/mi2ly/";
|
|
mainProgram = "mi2ly";
|
|
};
|
|
}
|