Skip to content

Commit

Permalink
use version number as rev for git source
Browse files Browse the repository at this point in the history
  • Loading branch information
propertyistheft authored and happysalada committed May 20, 2021
1 parent f461c82 commit 36bdd75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/tools/mix2nix/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, lib, fetchFromGitHub, elixir, erlang }:

stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "mix2nix";
version = "0.1.3";

src = fetchFromGitHub {
owner = "ydlr";
repo = "mix2nix";
rev = "66c277bdffb93da9a63e3f1ea42432a73e572b51";
rev = version;
sha256 = "11qn80im5zfbx25ibxqrgi90mglf8pnsmrqsami633mcf2gvj2hy";
};

Expand Down

0 comments on commit 36bdd75

Please sign in to comment.