Skip to content

Commit

Permalink
qbe: use unstableUpdater
Browse files Browse the repository at this point in the history
  • Loading branch information
fgaz committed Nov 21, 2020
1 parent 3f20319 commit 97e5fc3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/development/compilers/qbe/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{ stdenv, fetchgit }:
{ stdenv
, fetchgit
, unstableGitUpdater
}:

stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "qbe";
version = "unstable-2019-07-11";

Expand All @@ -11,6 +14,9 @@ stdenv.mkDerivation {
};

makeFlags = [ "PREFIX=$(out)" ];

passthru.updateScript = unstableGitUpdater { };

meta = with stdenv.lib; {
homepage = "https://c9x.me/compile/";
description = "A small compiler backend written in C";
Expand Down

0 comments on commit 97e5fc3

Please sign in to comment.