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: 255f67e50ff4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 49d963855abe
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 21, 2019

  1. morph: 1.1.0 -> 1.2.0

    adamtulinius committed Feb 21, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    3ad5550 View commit details
  2. Merge pull request #56148 from adamtulinius/morph-v1.2.0

    morph: 1.1.0 -> 1.2.0
    srhb authored Feb 21, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    49d9638 View commit details
Showing with 8 additions and 2 deletions.
  1. +8 −2 pkgs/tools/package-management/morph/default.nix
10 changes: 8 additions & 2 deletions pkgs/tools/package-management/morph/default.nix
Original file line number Diff line number Diff line change
@@ -2,20 +2,26 @@

buildGoPackage rec {
name = "morph-${version}";
version = "1.1.0";
version = "1.2.0";

src = fetchFromGitHub {
owner = "dbcdk";
repo = "morph";
rev = "v${version}";
sha256 = "0pixm48is9if9d2b4qc5mwwa4lzma6snkib6z2a1d4pmdx1lmpmm";
sha256 = "0jhypvj45yjg4cn4rvb2j9091pl6z5j541vcfaln5sb3ds14fkwf";
};

goPackagePath = "github.com/dbcdk/morph";
goDeps = ./deps.nix;

buildInputs = [ go-bindata ];

buildFlagsArray = ''
-ldflags=
-X
main.version=${version}
'';

prePatch = ''
go-bindata -pkg assets -o assets/assets.go data/
'';