Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a38590d91ce7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 105d3a7b01bd
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 14, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    sxzz Kevin Deng 三咲智子
    Copy the full SHA
    2ef3661 View commit details
  2. noaa-apt: 1.2.0 -> 1.3.0

    trepetti committed Oct 14, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    sxzz Kevin Deng 三咲智子
    Copy the full SHA
    d2529bf View commit details

Commits on Oct 29, 2020

  1. Merge pull request #100510 from trepetti/noaa-apt-1.3.0

    noaa-apt: 1.2.0 -> 1.3.0
    timokau authored Oct 29, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    sxzz Kevin Deng 三咲智子
    Copy the full SHA
    105d3a7 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/applications/radio/noaa-apt/default.nix
7 changes: 4 additions & 3 deletions pkgs/applications/radio/noaa-apt/default.nix
Original file line number Diff line number Diff line change
@@ -13,13 +13,13 @@

rustPlatform.buildRustPackage rec {
pname = "noaa-apt";
version = "1.2.0";
version = "1.3.0";

src = fetchFromGitHub {
owner = "martinber";
repo = "noaa-apt";
rev = "v${version}";
sha256 = "0fqki4a9c54rixdz5bpswvn433f9saw6yazgw4av3xdd7g2fdvvj";
sha256 = "0fmbg6lw7lmm402hzddpzgi7y9mc6kic14x8rif7fampk20mv3ms";
};

nativeBuildInputs = [
@@ -36,7 +36,7 @@ rustPlatform.buildRustPackage rec {
pango
];

cargoSha256 = "1pzcq31inazmc9cz31fspzqkp0lpkjid8ai3g17sin1pfzby5jlh";
cargoSha256 = "0w4rbbz8lsh31xkgibzndiic47690nfcjrn1411dskf7ali6djy8";

preBuild = ''
# Used by macro pointing to resource location at compile time.
@@ -59,6 +59,7 @@ rustPlatform.buildRustPackage rec {
homepage = "http://noaa-apt.mbernardi.com.ar/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ trepetti ];
platforms = platforms.all;
changelog = "https://github.com/martinber/noaa-apt/releases/tag/v${version}";
};
}